Introduction

Depression is one of the most common mental health conditions worldwide. It can have significant consequences for individuals, communities, and wider society, including inmpacts on wellbeing and employment. One form of depression known to worsen during the winter months is Seasonal Affective Disorder (Rosenthal,M.B(2004)).

The Covid-19 pandemic created major distruptions to daily life, including prolonged periods spent indoors due to lockdowns. Reduced exposure to natural light is a known risk factor for SAD(Rosenthal,M.B(2004)), and the combination of winter daylight shortages and enforced indoor isolation may have contributed to increased levels of depressive symptoms during the pandemic. These changes may be reflected in pattern of antidepressant prescribing, particularly during winter periods.

The aim of this study is to investigate wether the COVID-19 pandemic influenced antidepressant prescribing and whether there are inequalities or geographic differences associated with this trend.

Methods

All data used in this study was obtained from publicly available NHS Scotland and Scottish Government sources.Antidepressant prescribing data were downloaded from the Data by Prescriber Location dataset, focusing specifically on winter periods (December to Februray) for the years 2019-2023, from the Public Health Scotland OpenData portal. Winter population estimates were taken from the National Records of Scotland census release.Socioeconomic information was sourced from the Scottish Index of Multiple Deprivation (SIMD 2020v2) datasets published by the Scottish Government. Spatial analysis was supported by incorporating NHS Scotland Health Board boundary shapefiles, which are publicly available through PHS and used to map regional variation in prescribing.

Antidepressant medications were identified using the BNF item code prefix “0403”, and all prescriptions with codes starting with “0403” were retained for analysis. These filtered data were then processed and summarised to generate visualisations of prescribing patterns.

For the purpose of this study, the COVID-19 period is defined as March 2020 to June 2021, corresponding to the main period of national lockdowns. This places Winter 2019 as pre-COVID, Winter 2020/2021 as during COVID, and Winter 2022 as post-COVID.

Figure1,Figure2,Figure3 are interactive - hover over the elements to see additional details.


##Loading Necessary Packages
library(tidyverse) 
library(here) # directory stucture
library(gt) # tables
library(janitor) # cleaning data
library(ggplot2) # plotting graph
library(sf) # to read in map data 
library(readxl) # to read in map data
library(plotly) # to make interactive
library(viridis) # colour palette for map
library(ggiraph) # make ggplot2 graphs interactive
# Loading multiple data files (18 CSVs) containing counts of medications dispensed in the community
files <- list.files(here("data", "winter_data"), pattern = "csv")
winter_data <- files %>% # Read all downloaded winter prescribing files stored in the 'winter_data' folder
  map_dfr(~read_csv(here("data", "winter_data", .))) %>% 
clean_names()#combine into one dataframe and clean column names
filtered_winter_data <- winter_data %>% 
filter(str_starts(bnf_item_code,"0403")) %>%  #Filter for antidepressants only (BNF item code starts with "0403" 
  mutate(year = as.numeric(substr(paid_date_month,1,4)), month = as.numeric(substr(paid_date_month,5,6))) %>% #Extract year and month from 'paid_date_month' for grouping into winter periods
  mutate(winter_year=case_when(month == 12 ~ year + 1, 
month %in% c(1,2) ~ year) )  #Create 'winter_year' column: December counts belong to the next year, Jan-Feb to current year
filtered_winter_data <- filtered_winter_data %>% 
  unite("healthboards",hbt2014,hbt,sep = "_") #Merge Health Board columns into a single column since they contain the same information
filtered_winter_data$healthboards <- gsub("[NA]","",filtered_winter_data$healthboards) 
    filtered_winter_data$healthboards <-
      gsub("_","",filtered_winter_data$healthboards)#Remove any remaining 'NA' strings and underscores to standardize Health Board codes

Figure 1

#summarise total antidepressant prescriptions for each winter year
winter_years_data <- filtered_winter_data %>% 
  group_by(winter_year) %>% 
  summarise(total_items=sum(number_of_paid_items,na.rm = TRUE))
#plot line graph to visualise overall trend in total prescriptions across winter years
plot <- suppressWarnings( ggplot(winter_years_data,aes(x=winter_year,y=total_items)) + #line connecting total prescriptions per year
  geom_line(linewidth=0.7,colour = "blue") +
  geom_point(aes(text = paste0(
      "<b>Winter Year:</b> ",winter_year, "<br>",
      "<b>Total Items:</b> ",scales::comma(total_items)),
size = 1))+ #points with interactive tooltip showing year and total
  geom_vline(xintercept = 2020, 
linetype = "solid", colour = "brown") + geom_vline(xintercept = 2022, 
linetype = "solid", colour = "brown") + #reference lines to mark COVID-related winters
  scale_x_continuous(breaks=2017:2023) + #ensures all years appear on x-axis
  labs(title="Total Antidepressant Prescriptions During Winter Season",x="Winter Year",y="Total Antidepressant Prescriptions") +
  theme_minimal(base_size = 10))#thiscode suppresses warnings
ggplotly(plot,tooltip="text",height=250) #convert ggplot to interactive plotly object with tooltips

The line graph shows a steady upward trend in winter antidepressant prescribing across all years. Although the COVID-19 period (2020–2022) is highlighted, prescribing patterns do not markedly diverge from pre-pandemic trends, with increases during COVID appearing slightly less steep than earlier years. The y-axis is truncated to improve visibility of year-to-year changes.


#Prepare Population
population <- readxl::read_excel(here("data","population.xlsx"), skip=10) %>% 
  clean_names() %>% 
  select(x2,all_people) %>% 
  filter(!is.na(all_people)) %>% 
  rename(h_bname = "x2",hb_population = "all_people") %>% 
filter(!str_detect(hb_population,"Cells"))

filtered3_winter_data <- filtered_winter_data %>% 
  group_by(healthboards,winter_year,gp_practice) %>% 
  summarise(paid_quantity = sum(paid_quantity,na.rm=TRUE)) 

SIMD <- readxl::read_excel(here("data","SIMD.xlsx")) %>% 
  clean_names() 

combined_pop_simd <- SIMD %>% 
  full_join(filtered3_winter_data,join_by(h_bcode == healthboards)) %>% 
  left_join(population,join_by(h_bname == h_bname))
Figure 2
r #sum antidepressant prescriptions per health board and winter year (from 2019 onwards) hb_prescribing <- filtered_winter_data %>% filter(winter_year >= 2019) %>% group_by(healthboards, winter_year) %>% summarise(total_paid = sum(paid_quantity, na.rm = TRUE)) #clean SIMD data (keep unique health board codes and names) simd_clean <- SIMD %>% select(h_bcode, h_bname) %>% distinct() #combine with prescribing data with SIMD and population data,calculate prescriptions per head combined <- hb_prescribing %>% left_join(simd_clean, join_by(healthboards == h_bcode)) %>% left_join(population, by = "h_bname") %>% mutate(quantity_per_head = total_paid / hb_population) %>% filter(!is.na(h_bname)) #read and clean NHS health board shapefile NHS_healthboards <- st_read(here("data","Week6_NHS_HealthBoards_2019.shp"),quiet = TRUE) %>% clean_names() %>% rename(h_bname = hb_name) #join spatial data with prescribing data, fill missing value with 0 retry_mapped_data <- NHS_healthboards %>% left_join(combined, by = "h_bname") %>% st_as_sf() %>% mutate(quantity_per_head = replace_na(quantity_per_head, 0)) #plot interactive map of antidepressant prescriptions per head plot_map <- retry_mapped_data %>% ggplot() + geom_sf_interactive(aes(fill = quantity_per_head, tooltip = paste0(h_bname, "\nWinter Year: ", winter_year, "\nItems per Head: ", round(quantity_per_head,2))), colour = "white", size = 0.1) + scale_fill_viridis_c(option = "mako", direction = -1, name = "Items per Head") + #blueish colour palette labs(title="Antidepressant Prescriptions per Head", subtitle="By Health Board and Winter Year") + facet_wrap(~winter_year) + # separate maps per year theme_void(base_size = 8) + theme(strip.text = element_text(size=10, face="bold"), plot.title = element_text(face="bold", size=12), plot.subtitle = element_text(size=8)) #convert to interactive map interactive_map<-girafe(ggobj = plot_map);interactive_map
{=html} <div class="girafe html-widget html-fill-item" id="htmlwidget-64614e3578ae3ee14a36" style="width:384px;height:288px;"></div> <script type="application/json" data-for="htmlwidget-64614e3578ae3ee14a36">{"x":{"html":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='ggiraph-svg' role='graphics-document' id='svg_3c9aaa3e0504a623' viewBox='0 0 288 216'>\n <defs id='svg_3c9aaa3e0504a623_defs'>\n <clipPath id='svg_3c9aaa3e0504a623_c1'>\n <rect x='0' y='0' width='288' height='216'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c2'>\n <rect x='26.16' y='0' width='235.67' height='216'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c3'>\n <rect x='26.16' y='36.19' width='55.78' height='83.21'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c4'>\n <rect x='26.16' y='132.79' width='55.78' height='83.21'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c5'>\n <rect x='85.92' y='36.19' width='55.78' height='83.21'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c6'>\n <rect x='85.92' y='132.79' width='55.78' height='83.21'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c7'>\n <rect x='145.69' y='36.19' width='55.78' height='83.21'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c8'>\n <rect x='26.16' y='123.38' width='55.78' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c9'>\n <rect x='85.92' y='123.38' width='55.78' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c10'>\n <rect x='26.16' y='26.77' width='55.78' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c11'>\n <rect x='85.92' y='26.77' width='55.78' height='9.42'/>\n <\/clipPath>\n <clipPath id='svg_3c9aaa3e0504a623_c12'>\n <rect x='145.69' y='26.77' width='55.78' height='9.42'/>\n <\/clipPath>\n <\/defs>\n <g id='svg_3c9aaa3e0504a623_rootg' class='ggiraph-svg-rootg'>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c1)'>\n <rect x='0' y='0' width='288' height='216' fill='#FFFFFF' fill-opacity='1' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' class='ggiraph-svg-bg'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c2)'>\n <rect x='26.16' y='-0' width='235.67' height='216' fill='#000000' fill-opacity='0' stroke='none'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c3)'>\n <path id='svg_3c9aaa3e0504a623_e1' d='M 49.325134 102.223454 L 50.004320 102.777138 L 50.200298 103.640318 L 50.017964 103.973573 L 50.477414 104.347595 L 50.164653 104.598908 L 50.482212 104.873955 L 50.422222 105.545943 L 50.196548 105.739622 L 49.205045 105.702997 L 48.553319 104.828825 L 48.664275 104.212231 L 48.356077 103.308558 L 48.591525 102.716833 L 49.325134 102.223454 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_3c9aaa3e0504a623_e2' d='M 51.572843 102.158168 L 51.441975 102.463058 L 51.361462 102.312939 L 51.572843 102.158168 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_3c9aaa3e0504a623_e3' d='M 51.839976 101.458730 L 51.834435 101.951020 L 51.519497 102.068211 L 51.656840 101.553723 L 51.839976 101.458730 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_3c9aaa3e0504a623_e4' d='M 52.610461 100.310077 L 52.921397 100.808404 L 52.690886 100.921373 L 53.104060 101.170618 L 53.109558 101.362913 L 53.348358 101.389025 L 53.496972 101.934199 L 53.693466 101.741564 L 53.805301 101.923963 L 54.120470 101.666735 L 54.388143 102.153210 L 54.654782 101.942027 L 54.891483 102.094027 L 54.813235 102.315906 L 55.018250 102.292224 L 55.274158 102.563822 L 55.389502 102.452909 L 55.786448 102.891426 L 56.322101 103.022062 L 56.584771 103.816560 L 56.790633 103.945779 L 56.305279 104.453252 L 56.425339 104.599754 L 56.967369 104.344407 L 57.423971 104.421424 L 57.723957 104.126770 L 58.272309 104.574522 L 58.270660 104.761538 L 57.784536 105.351944 L 58.048680 105.707287 L 57.828021 105.908322 L 57.926036 106.039542 L 57.302427 106.321913 L 57.170669 106.844726 L 57.315730 107.066814 L 57.082866 107.692567 L 56.876830 107.880024 L 56.486557 107.445664 L 55.796948 107.518689 L 55.364368 108.146642 L 54.892539 109.530192 L 54.760681 109.596423 L 54.660170 109.183975 L 54.491074 109.402985 L 53.888574 109.318877 L 53.177888 109.825670 L 53.181681 110.139727 L 53.403441 110.301787 L 53.357648 110.605346 L 52.779337 110.752892 L 52.599411 110.625850 L 52.256438 110.811383 L 52.170351 110.644541 L 51.590335 110.688189 L 51.529975 110.416680 L 51.333942 110.343016 L 50.953257 110.996751 L 50.475380 111.146259 L 50.416582 110.484549 L 50.891512 109.372882 L 51.844704 108.387432 L 52.044391 107.681092 L 51.980420 107.225213 L 52.501779 106.778975 L 52.737005 106.056191 L 53.425842 105.734669 L 53.639009 105.169663 L 53.218524 104.534705 L 53.417517 104.470397 L 53.275157 103.942535 L 52.749795 103.514034 L 52.316275 103.400668 L 52.197665 103.023438 L 51.777395 102.604909 L 51.800724 102.226491 L 52.165863 101.703391 L 51.959112 101.150719 L 51.973416 100.464594 L 52.610461 100.310077 Z ' fill='#36284F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 18.4'/>\n <path id='svg_3c9aaa3e0504a623_e5' d='M 65.833724 110.219735 L 65.519951 109.416453 L 65.815924 108.653158 L 65.413249 108.643473 L 65.672610 108.329040 L 65.581135 108.073197 L 65.138166 107.984527 L 64.898155 108.240315 L 64.570080 108.205605 L 64.172957 107.219803 L 63.998804 107.117225 L 63.666715 107.270213 L 63.373985 106.906075 L 62.849943 107.310585 L 62.663487 107.234602 L 62.783250 106.679533 L 63.190322 106.249702 L 62.707937 106.054329 L 62.428677 106.443315 L 61.606451 106.533856 L 61.162493 106.138328 L 61.281178 105.467991 L 61.535701 105.137551 L 61.534273 104.587221 L 61.259365 103.984765 L 61.595271 103.930441 L 61.575887 103.531087 L 62.205070 102.792222 L 61.914683 102.619939 L 61.716287 102.002354 L 62.030070 101.562958 L 62.423619 101.405626 L 62.582930 101.789654 L 62.933666 101.755583 L 63.066667 102.014525 L 63.687879 101.702523 L 64.070983 102.826723 L 64.314951 102.687148 L 64.238485 102.502440 L 64.436880 102.228457 L 65.299862 101.516737 L 65.464813 101.834446 L 65.860121 101.461160 L 66.066653 101.542563 L 66.504950 101.221579 L 66.759473 101.421569 L 67.248289 101.201843 L 67.689665 101.426022 L 67.853483 101.220314 L 68.035002 101.300079 L 68.190519 100.925991 L 67.936106 100.650029 L 68.045392 100.413756 L 68.386882 100.411393 L 68.644978 100.750518 L 69.361172 99.993018 L 69.600369 100.174603 L 70.319124 100.163708 L 70.910069 100.358893 L 70.945713 100.666509 L 71.326343 100.893963 L 71.626879 101.651024 L 71.262036 101.878446 L 71.264906 102.257844 L 71.043653 102.542207 L 70.636536 102.785307 L 70.700316 102.942122 L 70.137506 103.599814 L 70.233752 103.736069 L 69.739790 103.660702 L 69.529190 103.841760 L 69.719176 103.882922 L 69.853880 104.477814 L 70.189037 104.781087 L 70.456479 105.765240 L 70.705186 105.850150 L 70.246451 106.337702 L 70.042579 106.281861 L 69.519196 106.582165 L 69.503529 107.083977 L 69.213944 107.302999 L 68.541739 107.230710 L 68.226010 107.616254 L 67.955237 107.677714 L 67.336312 108.379725 L 67.581731 108.539904 L 67.439593 108.825410 L 67.191755 108.849015 L 66.929866 109.438300 L 66.069787 109.855905 L 65.833724 110.219735 Z ' fill='#3B3C6D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.06'/>\n <path id='svg_3c9aaa3e0504a623_e6' d='M 58.128501 105.784898 L 59.159511 105.978137 L 59.637663 106.840933 L 59.931030 106.991458 L 59.918189 107.481802 L 60.376990 107.889315 L 60.555650 107.832616 L 60.638659 107.470148 L 60.876635 107.440738 L 60.849369 106.782606 L 61.064202 106.580472 L 61.362648 106.424570 L 62.428677 106.443315 L 62.707937 106.054329 L 63.190322 106.249702 L 62.783250 106.679533 L 62.651096 107.220693 L 62.849943 107.310585 L 63.373985 106.906075 L 63.666715 107.270213 L 63.998804 107.117225 L 64.172957 107.219803 L 64.570080 108.205605 L 64.898155 108.240315 L 65.138166 107.984527 L 65.581135 108.073197 L 65.672610 108.329040 L 65.413249 108.643473 L 65.815924 108.653158 L 65.519951 109.416453 L 65.840177 110.212489 L 65.122037 110.933114 L 64.474097 110.880857 L 64.647129 111.083101 L 64.512259 111.545256 L 63.774501 112.098255 L 62.753576 111.942686 L 62.235159 112.083960 L 61.898356 112.431205 L 61.571654 112.494368 L 61.633995 112.355032 L 61.440269 112.412570 L 61.522642 112.145780 L 61.335978 112.533497 L 60.934159 112.665685 L 60.334990 113.350457 L 59.916594 113.221876 L 59.506059 113.347709 L 59.594070 113.168278 L 59.453850 113.153952 L 57.867084 114.214560 L 57.376073 114.188122 L 57.133679 113.812937 L 57.055766 114.231218 L 56.815195 114.004558 L 56.635158 114.069559 L 55.986931 113.346042 L 55.448404 113.178231 L 55.548706 113.339422 L 55.011559 112.850526 L 55.314673 113.763147 L 55.116662 114.468622 L 55.225661 114.841545 L 54.892224 115.241961 L 53.864299 114.692205 L 53.466033 114.018682 L 52.711019 113.382293 L 52.283671 113.286469 L 51.944798 112.977464 L 51.607156 113.036784 L 50.997851 113.575966 L 51.290239 114.802635 L 51.554877 115.043514 L 51.447637 115.560982 L 51.613973 115.610073 L 51.120429 115.513497 L 50.826260 115.238755 L 50.788812 114.933492 L 50.963361 114.811849 L 50.899186 114.457550 L 50.672556 114.374388 L 50.624254 113.905238 L 49.637664 112.787725 L 49.403250 112.091772 L 49.567927 111.071042 L 50.099855 110.886633 L 50.415929 111.486843 L 50.223706 111.569843 L 50.228949 111.890531 L 50.516753 112.268124 L 50.775756 112.034900 L 50.475380 111.146259 L 50.953257 110.996751 L 51.260334 110.362421 L 51.487426 110.373196 L 51.590335 110.688189 L 52.170351 110.644541 L 52.256438 110.811383 L 52.599411 110.625850 L 52.779337 110.752892 L 53.357648 110.605346 L 53.217084 109.760142 L 53.888574 109.318877 L 54.491074 109.402985 L 54.657311 109.183975 L 54.760681 109.596423 L 54.892539 109.530192 L 55.364368 108.146642 L 55.792330 107.523087 L 56.486557 107.445664 L 56.917069 107.871009 L 57.315730 107.066814 L 57.170669 106.844726 L 57.302427 106.321913 L 58.128501 105.784898 Z ' fill='#3A3462' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.57'/>\n <path id='svg_3c9aaa3e0504a623_e7' d='M 56.071371 92.536293 L 56.300717 93.272926 L 57.278459 92.873000 L 57.583117 93.150996 L 57.639575 93.434545 L 57.396485 93.443230 L 57.217219 93.670378 L 56.936090 93.504690 L 56.946204 94.376061 L 56.645505 94.394586 L 56.645340 95.070365 L 56.970063 95.386896 L 57.477405 95.696173 L 57.710928 95.585018 L 57.981965 95.847875 L 58.203813 95.783085 L 58.629542 96.369752 L 58.901877 96.302850 L 59.083210 96.548303 L 59.263795 96.412245 L 59.327453 96.785565 L 59.713086 96.531151 L 60.004770 96.883581 L 60.481437 96.900513 L 60.819167 96.700655 L 61.118977 96.834226 L 60.979137 97.103934 L 60.603136 97.257879 L 60.727923 97.609197 L 60.482592 97.704124 L 60.719117 97.863401 L 60.130481 97.922024 L 59.903093 98.325039 L 60.201627 98.720028 L 61.563507 99.167055 L 61.489602 99.306784 L 61.271338 99.402227 L 60.883991 99.257957 L 60.405168 99.875937 L 59.909953 100.014798 L 59.702751 100.318852 L 59.332301 100.461517 L 59.420026 100.347943 L 58.780739 99.925709 L 59.086255 99.673341 L 58.568930 99.621788 L 58.509691 99.373333 L 58.237401 99.361393 L 58.224351 99.054822 L 57.937690 99.022674 L 58.014289 98.800794 L 57.492357 98.792174 L 57.209469 99.043399 L 57.038229 98.743633 L 56.788400 98.982743 L 56.158558 98.755673 L 56.259058 99.513954 L 55.856219 99.587617 L 55.622310 99.308048 L 55.291640 99.407702 L 55.074113 98.998872 L 54.915737 99.015363 L 54.742903 98.453939 L 54.908502 98.292397 L 54.117919 98.094242 L 54.145604 97.656946 L 53.812052 97.504167 L 53.469166 96.537627 L 53.494640 95.628281 L 53.748393 95.556048 L 53.607994 95.346052 L 53.780168 95.057611 L 52.915647 95.001275 L 52.943375 94.755866 L 52.472810 94.409374 L 52.786759 93.845960 L 53.325544 93.663781 L 53.387059 93.355495 L 53.797705 93.365774 L 54.254043 92.924179 L 54.745981 92.852606 L 54.894408 92.632550 L 55.095333 92.765968 L 55.866763 92.375993 L 56.071371 92.536293 Z ' fill='#3A3665' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.42'/>\n <path id='svg_3c9aaa3e0504a623_e8' d='M 63.049274 78.127668 L 63.487306 78.151855 L 64.148725 78.611591 L 65.109658 78.921681 L 66.295691 78.414207 L 66.442391 78.590580 L 66.665700 78.496874 L 66.995460 78.721262 L 67.174483 78.605291 L 68.091734 78.724362 L 68.502544 78.942240 L 69.577885 78.895052 L 69.909414 78.575133 L 70.596208 78.884277 L 71.081342 78.521613 L 71.830838 78.552551 L 71.944730 78.791297 L 72.244507 78.719437 L 72.656317 79.352215 L 73.048382 79.589158 L 73.141440 80.629558 L 73.408123 80.950686 L 73.235003 80.959471 L 73.210870 81.190202 L 73.364882 81.355196 L 72.797773 82.124758 L 72.787724 82.364362 L 72.025430 83.173833 L 71.579822 84.145419 L 71.368870 84.910703 L 71.561868 84.925678 L 71.735241 85.578884 L 71.592773 85.839411 L 71.369145 85.838960 L 70.489034 87.500286 L 70.540301 88.222439 L 70.297344 88.791306 L 69.754061 89.563496 L 68.973878 90.124065 L 68.747865 90.187259 L 68.293461 89.722752 L 67.715985 89.739903 L 67.358158 89.016552 L 67.426400 88.485528 L 67.258459 88.124687 L 66.740452 87.571938 L 66.343220 87.540878 L 66.287588 87.355731 L 65.893104 87.230833 L 65.477786 87.470073 L 64.995842 87.389978 L 64.613233 87.559624 L 64.348375 88.412469 L 63.261951 87.901938 L 63.252991 88.162399 L 62.674899 88.546216 L 62.277062 88.396692 L 62.033149 88.559685 L 61.556372 88.311154 L 61.399205 88.407400 L 61.262214 87.829649 L 60.645420 87.797711 L 60.406840 88.022768 L 60.209488 87.772533 L 59.921322 87.894077 L 59.817479 87.769344 L 60.177659 87.043156 L 60.130547 86.494749 L 60.302887 86.267163 L 60.193711 86.025119 L 60.426740 85.997907 L 60.838814 85.556093 L 61.084377 85.607876 L 61.642590 84.946061 L 62.202300 84.840460 L 62.364469 84.275451 L 62.141928 84.080408 L 62.249631 83.567711 L 61.960145 83.268517 L 62.697713 82.256198 L 62.527078 81.826147 L 62.146503 81.698391 L 61.943378 81.360200 L 60.897657 81.734101 L 60.631128 81.628630 L 60.720854 80.602303 L 60.516477 80.494117 L 60.594429 80.024233 L 60.272432 79.191365 L 61.132632 78.787108 L 61.811741 78.858462 L 62.040185 78.646972 L 62.036865 78.371856 L 63.049274 78.127668 Z ' fill='#3A7BA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.36'/>\n <path id='svg_3c9aaa3e0504a623_e9' d='M 51.110000 75.020883 L 51.077605 74.901194 L 50.330913 74.601209 L 50.026562 73.980381 L 49.652650 73.901364 L 49.711833 73.666598 L 49.431671 73.351208 L 49.669702 73.000187 L 50.080117 73.496204 L 50.217449 73.338543 L 50.446410 73.552387 L 50.683947 73.102491 L 50.466585 72.878807 L 50.731718 72.874849 L 50.498798 72.669582 L 50.885751 72.560593 L 50.444761 72.445349 L 50.651678 72.309566 L 50.435163 72.365297 L 50.492971 72.193244 L 49.881511 71.436656 L 50.084910 71.080323 L 50.501383 71.581070 L 50.933303 71.307140 L 50.697195 71.197416 L 50.818178 71.069417 L 50.939899 71.312309 L 51.334877 71.296806 L 51.465657 71.538465 L 51.439050 71.215556 L 51.712319 71.337211 L 51.644208 71.131943 L 51.806652 71.099014 L 52.129670 71.403342 L 52.453515 71.314782 L 52.894570 71.830501 L 52.531246 71.368545 L 52.998292 71.320554 L 52.136873 71.269594 L 51.805992 70.951468 L 51.649045 70.997920 L 51.698631 70.477494 L 51.485117 70.492172 L 51.342298 70.087574 L 51.555559 70.071411 L 51.426736 69.954815 L 51.670374 69.346488 L 52.441750 69.820923 L 52.123129 69.492331 L 52.377707 69.412016 L 51.975583 69.431146 L 51.853269 69.323565 L 52.124338 69.332470 L 51.839195 69.158042 L 52.129176 68.883948 L 52.392586 68.939856 L 52.106418 68.820236 L 52.255459 68.747935 L 51.818966 68.407116 L 51.982784 67.932209 L 52.348792 67.735626 L 52.577093 67.365660 L 52.658837 66.777014 L 52.975644 66.979038 L 53.487560 66.940843 L 53.815900 67.190352 L 53.826949 67.607540 L 54.024521 67.825836 L 53.756552 68.091639 L 53.989394 67.898015 L 53.839263 68.237658 L 54.071138 67.803319 L 53.845146 67.562297 L 54.152773 67.388199 L 54.017045 67.143736 L 54.177345 67.094260 L 54.362449 67.553073 L 54.881819 67.786971 L 54.189934 68.983361 L 54.777041 68.619365 L 54.940310 68.161059 L 55.094013 68.129560 L 55.068780 68.303405 L 55.356343 67.452188 L 55.873964 67.506610 L 56.144870 67.876158 L 56.267348 67.774436 L 56.358603 68.163533 L 56.572226 67.967446 L 56.450132 68.386227 L 56.341698 68.435255 L 56.353897 68.529155 L 56.768973 68.033687 L 57.119313 67.953372 L 57.450578 68.180024 L 57.517920 68.044627 L 57.682651 68.115113 L 57.687840 67.884986 L 57.929499 68.019284 L 58.258401 67.679994 L 58.599890 67.880369 L 58.956937 67.308324 L 59.035845 67.778725 L 59.486632 67.665745 L 59.618852 67.842427 L 60.472411 67.786696 L 61.301134 67.103123 L 62.050740 67.126475 L 61.953724 67.301991 L 62.109649 67.433640 L 62.534565 67.263422 L 63.099705 67.484610 L 63.219238 67.234771 L 62.833418 66.926628 L 63.074418 66.544644 L 63.500170 66.903737 L 64.273392 66.711542 L 64.445039 66.983557 L 65.321115 66.940612 L 65.190489 67.514669 L 65.001614 67.567982 L 65.036247 67.905613 L 64.623348 68.439715 L 64.679991 68.931192 L 65.141288 69.033342 L 64.730852 70.265102 L 63.986193 71.062766 L 62.884422 71.530824 L 62.101041 72.655508 L 60.772990 73.731234 L 60.153988 74.028867 L 59.882643 74.661370 L 58.968492 75.056019 L 58.734199 76.166124 L 58.766568 76.387268 L 58.801420 76.253465 L 59.069852 76.373030 L 58.074638 76.511979 L 57.427259 76.187267 L 56.961960 76.336342 L 56.618579 76.073990 L 56.912979 76.356824 L 57.576069 76.311780 L 57.798203 76.660966 L 57.910930 76.543291 L 58.599341 76.704130 L 58.489835 76.786644 L 59.190076 76.447188 L 59.709293 76.809183 L 60.025989 76.420141 L 60.301084 76.345665 L 58.920655 78.417131 L 58.516618 78.408468 L 58.481095 78.126217 L 58.325192 78.078830 L 57.690028 78.487365 L 56.949547 78.547416 L 56.061432 79.563607 L 57.330276 78.610591 L 57.718954 78.591889 L 57.974566 78.786481 L 58.502930 78.531606 L 58.786523 78.624762 L 58.055980 79.460280 L 58.112141 79.870893 L 57.605678 79.941961 L 57.136377 80.740361 L 56.071360 80.718141 L 56.664581 80.775126 L 56.216169 80.891249 L 56.809686 80.929115 L 57.219286 80.755533 L 57.518733 80.855595 L 58.371655 80.081449 L 58.199448 79.765521 L 58.530889 79.519870 L 59.565231 79.711098 L 60.270507 79.207362 L 60.594429 80.024233 L 60.516477 80.494117 L 60.720854 80.602303 L 60.631128 81.628630 L 60.897657 81.734101 L 61.942774 81.360035 L 62.081635 81.645892 L 62.582655 81.907067 L 62.656318 82.432880 L 61.946347 83.359717 L 62.249631 83.567711 L 62.141928 84.080408 L 62.364469 84.275451 L 62.303559 84.629222 L 62.200926 84.841504 L 61.624427 84.960003 L 61.061838 85.623544 L 60.838814 85.556093 L 60.426740 85.997907 L 60.193711 86.025119 L 60.302887 86.267163 L 60.130547 86.494749 L 60.177659 87.043156 L 59.802416 87.734162 L 59.175343 87.877915 L 58.809391 87.569299 L 58.678337 88.151349 L 58.305402 88.269375 L 58.230585 88.111197 L 57.714502 88.178286 L 57.299019 87.957350 L 57.116070 88.456886 L 56.407638 88.666827 L 56.218203 88.996828 L 55.928222 88.884849 L 55.449466 89.583550 L 54.935197 89.180050 L 54.743837 89.575909 L 54.448689 89.717792 L 54.403392 90.533202 L 53.953387 90.741877 L 53.550437 90.703451 L 53.548074 91.123112 L 53.892532 91.167640 L 54.131058 90.990409 L 54.078834 91.378295 L 54.564297 92.015263 L 54.298780 91.956771 L 53.634381 92.243619 L 53.913366 92.645084 L 53.672257 92.987618 L 53.984446 93.177493 L 53.797705 93.365774 L 53.385135 93.356814 L 53.325544 93.663781 L 52.786759 93.845960 L 52.472480 94.411188 L 52.943375 94.755866 L 52.915647 95.001275 L 53.780168 95.057611 L 53.607994 95.346052 L 53.748393 95.556048 L 53.494640 95.628281 L 53.468891 96.533109 L 53.812052 97.504167 L 54.153124 97.690633 L 53.900558 98.443318 L 54.027863 98.763049 L 53.619813 98.961600 L 53.911937 99.161315 L 53.889883 99.772423 L 53.497279 99.746135 L 53.411522 99.574765 L 53.701788 99.579745 L 53.310218 99.382844 L 53.196909 98.995782 L 52.727602 98.799970 L 52.479137 97.989513 L 52.498158 98.528526 L 52.888249 99.107794 L 52.386738 99.150984 L 52.204498 98.773953 L 52.138353 98.223105 L 53.082982 96.477586 L 52.286353 97.719007 L 52.117937 97.598107 L 52.047498 96.861004 L 51.943567 96.911562 L 51.971053 97.555423 L 52.194833 97.880857 L 51.920984 98.319531 L 51.988520 99.127872 L 51.605887 99.041797 L 51.904602 99.337140 L 51.360923 100.604924 L 50.907641 100.464232 L 50.789604 99.470151 L 50.426950 98.788051 L 50.707090 100.124380 L 50.024990 99.665964 L 49.986509 99.324529 L 49.574435 100.120488 L 49.812961 100.932642 L 49.058517 100.606160 L 49.079368 100.325541 L 48.807512 100.035325 L 48.996068 99.321231 L 48.880680 98.660295 L 49.133939 98.654908 L 49.967908 97.264648 L 50.681956 96.951084 L 50.983602 96.339297 L 51.928654 95.650083 L 51.141044 96.024689 L 51.047086 95.877346 L 50.577025 96.776384 L 49.742772 97.256086 L 49.280606 98.020909 L 49.024569 97.992822 L 48.933784 98.519895 L 48.546777 98.802674 L 48.243083 98.503677 L 48.188356 99.105023 L 48.500215 100.354386 L 48.360695 100.435899 L 48.566622 100.458944 L 48.857262 100.901803 L 48.989636 101.548940 L 48.431609 101.831389 L 48.033113 102.329276 L 47.762538 103.109612 L 47.890034 103.945045 L 47.645501 103.992637 L 47.640499 104.495966 L 47.163117 105.639011 L 46.785121 105.724843 L 46.948701 105.877680 L 47.238484 105.710366 L 47.130298 105.829271 L 47.335236 106.550622 L 46.707350 107.175935 L 46.135404 107.135684 L 45.586887 107.337994 L 45.311914 107.124371 L 45.348141 106.398348 L 45.458032 106.017608 L 46.010641 105.465807 L 46.093515 103.869718 L 46.433300 103.170412 L 46.440337 102.558512 L 46.862801 102.226862 L 47.220563 101.556911 L 47.865392 101.133678 L 48.179560 100.525570 L 47.049488 101.652124 L 46.909033 101.614138 L 46.989921 101.206167 L 46.765115 101.296946 L 46.598988 101.138955 L 46.641537 100.547504 L 47.246620 99.575314 L 47.067739 99.568003 L 46.559462 100.066934 L 46.511416 99.671516 L 47.400158 98.443318 L 47.198464 98.514288 L 47.429147 98.210471 L 47.128704 98.407091 L 47.364316 98.068570 L 47.021360 98.395068 L 47.100393 98.497796 L 46.829378 98.895303 L 46.935090 98.533089 L 46.804640 98.711750 L 46.484260 99.511051 L 46.383165 99.449042 L 46.567379 99.135313 L 46.352601 99.287807 L 46.985500 98.045922 L 47.341283 97.580743 L 47.630659 97.569914 L 47.462168 97.321657 L 47.948455 96.461941 L 47.800859 96.435185 L 47.216330 97.114136 L 47.235296 96.769678 L 47.680431 96.060540 L 47.555672 95.812045 L 48.108820 95.602217 L 47.996008 95.438772 L 47.343702 95.639771 L 47.536655 94.639544 L 47.745991 94.449504 L 47.933474 94.568054 L 48.430383 94.333990 L 48.105458 94.316919 L 47.937781 94.510064 L 47.823612 94.327410 L 48.008430 93.894789 L 48.298882 93.699737 L 48.243245 93.405543 L 48.543314 93.185951 L 49.722091 93.213995 L 49.923424 93.482277 L 50.742110 92.882647 L 51.142154 91.988140 L 50.290254 93.201065 L 49.965785 93.366027 L 49.796513 93.147544 L 49.198818 93.025363 L 48.726757 93.154899 L 48.694499 92.719616 L 48.429026 92.954744 L 48.481975 92.796170 L 48.326062 92.874044 L 48.771043 92.213977 L 48.978894 92.531741 L 50.024847 91.931551 L 49.417784 92.099943 L 49.086817 92.381798 L 48.907210 92.134323 L 48.751990 92.182654 L 49.169605 91.402703 L 49.606022 91.015058 L 49.501815 90.800808 L 50.154209 90.429007 L 50.659880 90.573397 L 51.874125 90.168777 L 50.558444 90.473512 L 50.411755 90.285967 L 49.979957 90.244398 L 50.988275 88.647070 L 50.456854 88.387192 L 49.547937 88.299005 L 50.932587 88.675512 L 50.138289 89.551391 L 49.958056 89.872002 L 50.041526 90.019208 L 49.748918 90.257734 L 49.592850 90.145700 L 48.448541 91.231189 L 48.116946 91.191718 L 48.293991 91.327798 L 47.884786 91.953661 L 46.915960 92.593189 L 46.353865 92.127242 L 46.514605 91.784466 L 46.274100 92.129528 L 45.465507 91.850235 L 44.869495 90.985021 L 44.862898 90.607414 L 45.413779 90.606480 L 45.513609 90.550243 L 45.232974 90.521438 L 45.396517 90.394781 L 46.005338 90.994037 L 45.733939 90.559369 L 46.637524 90.066319 L 47.207864 90.408413 L 47.988750 90.311827 L 47.180983 90.363996 L 46.836359 89.980122 L 46.443196 89.894794 L 45.995279 90.394726 L 45.273873 90.179178 L 45.085043 90.344701 L 44.474649 90.041977 L 43.682252 90.075995 L 43.420142 89.769632 L 43.427948 89.559691 L 43.724141 89.467997 L 43.680878 89.262235 L 44.000928 89.172354 L 45.100929 89.156522 L 45.230885 88.969451 L 45.547032 89.377073 L 45.839102 89.349587 L 45.750761 88.994628 L 46.389433 88.940645 L 45.750431 88.929705 L 45.828767 88.676997 L 46.140242 88.821739 L 45.895998 88.696787 L 45.991540 88.419010 L 46.918159 88.341719 L 47.226796 88.026495 L 47.145701 87.915417 L 46.874785 88.271079 L 46.460050 88.118112 L 46.901832 87.831188 L 46.831742 87.701233 L 45.811835 87.910129 L 45.573859 87.699474 L 45.791770 87.516415 L 46.072075 87.609374 L 45.744109 87.336930 L 46.045985 87.097150 L 46.353162 86.241964 L 46.980300 86.203273 L 47.090003 86.543235 L 47.561228 86.826235 L 48.328041 86.567445 L 47.656936 86.693640 L 47.395321 86.515584 L 47.280978 85.988540 L 46.900084 86.082202 L 46.756979 85.828647 L 46.634610 85.874989 L 46.541541 85.603808 L 47.079228 84.982784 L 47.597268 84.891485 L 47.947630 85.018021 L 48.402683 85.506419 L 48.432269 85.298326 L 49.273239 85.212954 L 48.360859 85.255063 L 48.147335 84.855202 L 47.506916 84.710559 L 47.264871 84.404142 L 47.770366 83.866224 L 47.618213 83.538357 L 47.997282 83.298313 L 48.455742 83.178858 L 49.024873 83.884321 L 49.237904 83.777641 L 48.542269 83.149943 L 48.923910 82.691646 L 48.491529 83.159782 L 47.109914 82.970006 L 47.224136 82.571246 L 47.495503 82.458695 L 47.464982 82.268006 L 48.472398 82.177916 L 49.054141 81.535825 L 48.368841 82.112730 L 47.816850 81.981279 L 48.050473 81.728361 L 47.965948 81.534913 L 47.078888 82.135631 L 46.793822 82.173507 L 46.679028 81.830600 L 46.572821 81.959401 L 46.660007 81.104027 L 46.424791 80.974687 L 46.319562 80.584976 L 46.639503 79.290261 L 46.810468 79.231550 L 47.230897 79.771052 L 47.461782 79.831081 L 47.461728 79.632850 L 47.509553 79.927394 L 47.818940 80.211822 L 47.803383 79.782266 L 48.012388 80.093521 L 48.009584 79.956694 L 48.589028 80.005268 L 48.678095 79.841944 L 48.242724 79.672287 L 47.717625 79.778308 L 47.198739 78.797761 L 46.795405 78.581389 L 47.025191 77.877971 L 47.372067 77.761748 L 47.707884 78.006948 L 47.792443 77.871253 L 47.656188 77.527092 L 46.910737 77.227250 L 46.978134 75.898121 L 47.752203 75.773609 L 47.904048 76.681019 L 48.292660 77.115149 L 48.183848 76.807808 L 48.461844 76.803740 L 48.350580 76.667134 L 48.472751 76.257961 L 48.090230 76.002460 L 48.020470 75.577027 L 48.295552 75.163028 L 48.663571 75.263507 L 48.795462 75.881531 L 49.230581 76.083820 L 49.563880 75.414858 L 50.263406 76.043304 L 50.769726 76.236060 L 50.096686 75.474998 L 49.750644 75.384986 L 49.694165 75.150440 L 49.957098 75.064572 L 50.176428 75.383656 L 50.757994 75.370605 L 51.466734 75.928159 L 51.805057 76.528614 L 51.619701 75.972225 L 50.863553 75.283077 L 51.110000 75.020883 Z M 56.160006 68.517406 L 56.119307 68.535807 L 56.163608 68.756248 L 56.164934 68.753553 L 56.318528 68.787197 L 56.156194 68.519866 L 56.160006 68.517406 Z M 52.414529 68.949028 L 52.643467 69.261611 L 52.660607 69.051890 L 52.414529 68.949028 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e10' d='M 64.741990 66.272706 L 64.808023 66.592746 L 64.607196 66.681538 L 64.741990 66.272706 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e11' d='M 56.776175 67.709019 L 56.964016 67.736286 L 56.897004 67.893342 L 56.776175 67.709019 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e12' d='M 51.422888 69.609477 L 51.465547 69.814690 L 51.292108 69.833711 L 51.225701 69.694794 L 51.422888 69.609477 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e13' d='M 49.989313 99.759088 L 50.687409 100.320468 L 50.611196 100.542557 L 50.790945 100.596068 L 50.807701 100.852878 L 51.036277 100.806491 L 51.163835 101.715694 L 50.983987 101.889220 L 51.120979 102.205181 L 50.945066 102.300261 L 50.703846 101.807201 L 50.489288 101.590445 L 50.334661 101.647648 L 50.281437 100.766240 L 49.758318 100.230753 L 49.708567 100.037029 L 49.989313 99.759088 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e14' d='M 49.719727 74.017455 L 49.878763 74.218379 L 49.781022 74.312987 L 49.627318 74.238829 L 49.719727 74.017455 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e15' d='M 49.033559 74.664701 L 49.106893 74.797736 L 48.958522 74.828575 L 49.033559 74.664701 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e16' d='M 48.704273 91.903394 L 48.121894 92.647502 L 47.477120 93.069637 L 47.679035 92.669931 L 47.526596 92.694394 L 47.953358 92.515524 L 48.407916 91.919830 L 48.704273 91.903394 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e17' d='M 48.146818 76.093571 L 48.332383 76.431960 L 48.100179 76.270892 L 48.146818 76.093571 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e18' d='M 48.138440 93.540368 L 47.742363 94.161998 L 47.490203 94.055736 L 47.684092 93.722327 L 48.138440 93.540368 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e19' d='M 43.349943 77.524926 L 43.716665 77.554018 L 43.669553 77.745410 L 43.998124 77.990489 L 44.066642 78.417912 L 44.346376 78.492169 L 44.672957 79.082696 L 44.499584 81.007605 L 44.122857 81.243591 L 44.612168 81.441064 L 44.456629 81.732947 L 44.749864 82.334522 L 44.347299 82.606934 L 44.598107 82.439488 L 44.999945 82.464599 L 45.093179 82.724619 L 44.852508 83.003385 L 45.216702 82.794379 L 45.851581 83.135320 L 46.005064 83.422574 L 46.978244 83.060007 L 47.260033 83.112891 L 47.126834 83.239163 L 47.672933 83.335969 L 47.491028 83.902847 L 46.834875 84.342463 L 46.597977 84.269756 L 46.576691 84.587432 L 46.714815 84.649100 L 46.536484 84.919784 L 46.202372 85.059613 L 45.685124 85.833913 L 45.154033 86.083389 L 44.921279 85.726287 L 45.204476 85.422036 L 45.237372 84.818305 L 46.288172 84.118845 L 45.309825 84.289557 L 45.083129 83.583675 L 45.094684 84.051921 L 44.687151 84.768830 L 44.492273 84.598855 L 44.549279 84.003777 L 44.195806 83.830778 L 44.132532 84.124936 L 43.119112 84.237960 L 43.402111 83.792902 L 42.876243 83.827260 L 42.752940 83.414744 L 42.971511 83.389348 L 43.031211 83.182541 L 42.633045 83.330087 L 42.159841 82.546727 L 42.176882 82.319965 L 42.538492 82.163613 L 42.545363 81.991450 L 43.172656 82.546893 L 42.728158 82.004533 L 42.741615 81.803630 L 42.271270 82.086882 L 42.395739 81.764798 L 42.223224 81.630609 L 42.246719 81.289229 L 42.191461 81.179692 L 41.940775 81.598451 L 41.944601 81.180670 L 41.644582 81.336692 L 41.668496 81.949890 L 41.532988 82.019101 L 40.672392 81.493727 L 40.539799 80.904696 L 40.399233 80.760613 L 40.242616 80.840213 L 40.326834 80.392462 L 40.721362 80.518645 L 40.554696 80.093686 L 40.802513 79.740432 L 41.251352 80.636880 L 41.495651 80.615508 L 41.602385 80.799215 L 41.251583 79.907603 L 41.576912 79.841141 L 41.752339 80.036492 L 41.820802 79.890386 L 41.324763 79.314119 L 41.234432 79.392411 L 41.415952 78.615363 L 41.748920 78.879066 L 41.828983 79.379416 L 42.215968 79.587718 L 42.468072 80.027884 L 42.711051 79.814260 L 42.605009 80.293500 L 42.900157 79.698323 L 43.420505 80.634418 L 43.340191 80.297326 L 43.474268 80.294544 L 43.109053 79.870332 L 42.931381 79.289436 L 43.199735 78.999302 L 42.970851 79.010451 L 42.806099 78.299435 L 43.307119 77.974162 L 43.349943 77.524926 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e20' d='M 47.490973 94.676761 L 47.175321 95.452974 L 46.994659 95.044582 L 47.490973 94.676761 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e21' d='M 47.263222 95.882640 L 47.388779 96.170201 L 47.222322 96.312691 L 47.263222 95.882640 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e22' d='M 47.084836 95.380960 L 47.215560 95.673117 L 47.042451 96.422910 L 46.865989 95.997202 L 47.084836 95.380960 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e23' d='M 44.044631 90.476085 L 44.443952 90.713897 L 44.422798 90.948531 L 44.922653 91.470320 L 45.115421 92.192846 L 46.191751 92.336247 L 46.378712 92.662455 L 46.644505 92.686918 L 46.971691 93.144818 L 47.119127 93.104237 L 47.090113 93.521017 L 46.905043 93.334264 L 47.087034 93.604531 L 46.881272 93.988009 L 46.623725 93.883286 L 46.690022 93.598935 L 46.464745 93.635965 L 46.537749 93.814692 L 46.111194 94.159458 L 46.685185 93.966405 L 46.766269 94.137315 L 45.790450 94.818646 L 45.414439 94.662908 L 45.702725 94.404922 L 45.540446 94.260156 L 45.122369 94.654332 L 44.747621 94.623273 L 44.350554 94.955911 L 44.116590 94.827111 L 43.667299 95.022649 L 43.259842 94.912154 L 42.937901 94.957001 L 42.822920 95.214172 L 42.779876 95.095378 L 42.519417 95.167501 L 42.236913 94.834148 L 42.017187 94.875102 L 42.272579 94.165175 L 42.680047 94.223127 L 42.832706 94.323452 L 42.737921 94.475649 L 43.019590 94.556580 L 42.989696 94.254781 L 43.372646 94.406658 L 43.961568 94.311710 L 44.572236 94.060672 L 44.712966 93.800872 L 43.362146 94.087674 L 43.299313 93.752562 L 43.697259 93.440373 L 43.753826 93.134230 L 44.386891 92.998723 L 44.784342 92.528432 L 43.891367 92.729742 L 43.774606 92.377917 L 43.257248 91.993384 L 42.863875 92.042145 L 42.511611 91.855512 L 42.544814 91.648211 L 42.936977 91.364189 L 42.718252 91.380989 L 42.680816 91.005581 L 43.036170 91.062907 L 43.132471 90.926530 L 43.572472 91.314142 L 43.344995 91.054451 L 43.344665 90.701032 L 43.567084 90.847667 L 43.557793 90.606040 L 44.044631 90.476085 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e24' d='M 46.854005 77.385516 L 47.063341 77.396895 L 46.971867 77.517395 L 46.854005 77.385516 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e25' d='M 46.688384 96.213355 L 46.790677 96.621527 L 46.293615 96.686504 L 46.308457 96.462270 L 46.688384 96.213355 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e26' d='M 46.710307 95.773684 L 46.638018 96.198732 L 46.524115 96.073834 L 46.710307 95.773684 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e27' d='M 46.527634 96.831423 L 46.648463 97.308794 L 45.542723 98.975288 L 45.230280 99.949072 L 45.126217 100.075509 L 45.073663 99.942751 L 45.010335 100.222066 L 44.776702 100.209258 L 44.535031 101.107411 L 44.040124 101.038355 L 43.713091 100.580653 L 43.773176 99.716924 L 44.209659 99.180171 L 44.978341 99.105683 L 45.387392 98.880460 L 44.816150 99.061155 L 44.368035 98.878151 L 44.778241 98.127940 L 46.527634 96.831423 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e28' d='M 46.364530 82.012009 L 46.567874 82.303804 L 46.410322 82.288246 L 46.364530 82.012009 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e29' d='M 46.246174 82.893495 L 46.368762 83.050607 L 46.220721 83.133120 L 46.246174 82.893495 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e30' d='M 46.154589 101.961125 L 46.161362 102.509652 L 45.817608 102.974380 L 45.764394 102.590616 L 46.154589 101.961125 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e31' d='M 45.777257 79.195323 L 45.870821 79.390641 L 45.664124 80.085385 L 45.520535 79.684030 L 45.673393 79.648726 L 45.623389 79.350456 L 45.777257 79.195323 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e32' d='M 45.415428 82.345143 L 45.867083 82.599611 L 45.718546 82.996844 L 45.296248 82.801746 L 45.212469 82.557942 L 45.415428 82.345143 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e33' d='M 45.730970 87.384756 L 45.829152 87.482222 L 45.520206 87.564407 L 45.730970 87.384756 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e34' d='M 45.492390 80.006279 L 45.606776 80.469204 L 45.247871 81.060103 L 45.460120 81.946702 L 45.045902 82.293249 L 44.810234 82.022927 L 44.887966 81.141574 L 45.080425 80.674251 L 45.357322 80.760173 L 45.275577 80.325175 L 45.350890 80.238759 L 45.361444 80.449799 L 45.546318 80.300493 L 45.492390 80.006279 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e35' d='M 44.167165 86.931342 L 44.350333 87.199608 L 44.295966 87.632077 L 43.980478 87.834816 L 43.679481 87.643941 L 43.672796 87.421643 L 44.003347 87.292127 L 43.972232 87.036559 L 44.167165 86.931342 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e36' d='M 44.165890 92.765529 L 44.233462 92.858212 L 44.076845 92.835234 L 44.165890 92.765529 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e37' d='M 43.515575 99.249601 L 43.590063 100.804281 L 43.953102 101.415741 L 44.079781 102.403390 L 43.789778 102.720626 L 43.689288 102.640091 L 43.668783 102.895219 L 43.136264 103.070516 L 42.684334 102.984495 L 42.478022 103.444010 L 42.280175 103.592107 L 41.971560 103.535265 L 41.797462 103.410037 L 41.858591 103.064369 L 42.375993 102.517612 L 41.896577 101.717432 L 42.457077 101.213993 L 41.867123 101.077440 L 41.363892 101.971954 L 40.829196 102.367559 L 40.583227 102.076897 L 41.069789 101.395787 L 41.112228 101.028734 L 40.931918 100.878439 L 41.136196 100.689663 L 41.194852 100.160662 L 41.627926 100.118498 L 42.108980 99.740067 L 42.058262 100.408094 L 42.157092 99.845724 L 42.385228 99.917738 L 43.017688 99.348662 L 43.515575 99.249601 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e38' d='M 43.893292 84.209593 L 44.049853 84.389299 L 43.652402 84.629475 L 43.549823 84.393587 L 43.893292 84.209593 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e39' d='M 42.709402 92.332421 L 43.289088 92.340205 L 43.816055 92.729852 L 43.382113 92.845932 L 43.267099 92.702640 L 43.138078 92.879103 L 42.948037 92.606878 L 43.036489 92.468787 L 42.890591 92.669492 L 42.699287 92.561580 L 42.709402 92.332421 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e40' d='M 43.515410 96.857688 L 43.613580 97.015515 L 43.139694 97.729828 L 43.214050 97.939275 L 42.685653 98.456347 L 42.533379 98.175107 L 42.879926 98.111614 L 42.529092 97.987376 L 42.783065 97.450788 L 43.515410 96.857688 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e41' d='M 43.255225 88.064217 L 43.545425 88.123752 L 43.565380 88.343423 L 43.211796 88.332099 L 43.255225 88.064217 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e42' d='M 42.995600 85.445202 L 43.443945 85.768946 L 43.516235 85.978832 L 43.331406 86.077508 L 43.564280 86.172666 L 43.383311 86.697763 L 43.022031 86.998078 L 42.084473 86.044854 L 42.995600 85.445202 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e43' d='M 42.142535 81.900261 L 42.130695 82.083023 L 41.992779 82.062419 L 42.142535 81.900261 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e44' d='M 41.493518 85.232579 L 41.944348 85.289971 L 41.866892 85.435042 L 42.078371 85.591495 L 41.566356 85.392768 L 41.123113 85.506782 L 41.493518 85.232579 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e45' d='M 42.066442 94.095425 L 41.944733 94.495406 L 41.660723 94.583813 L 41.710275 94.287280 L 42.066442 94.095425 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e46' d='M 41.753153 89.895904 L 41.869366 90.115904 L 41.513143 90.748969 L 41.353788 90.700505 L 41.349269 90.936975 L 40.723572 91.265381 L 40.626930 91.096175 L 40.527320 91.287865 L 40.272521 91.165771 L 40.129153 91.409520 L 40.106119 91.062973 L 40.423311 91.006570 L 40.766725 90.476250 L 41.753153 89.895904 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e47' d='M 39.729832 91.417546 L 39.909593 91.805103 L 39.677586 91.814381 L 39.647153 91.975847 L 39.571951 91.797318 L 39.381650 91.829447 L 39.296088 92.243542 L 38.855394 92.219959 L 38.697304 92.730324 L 38.121004 92.595389 L 38.184552 92.156652 L 37.977635 91.965458 L 38.233368 91.763873 L 38.633569 91.644802 L 38.889571 91.820971 L 39.292470 91.552503 L 39.548491 91.646283 L 39.729832 91.417546 Z ' fill='#3A74A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.77'/>\n <path id='svg_3c9aaa3e0504a623_e48' d='M 66.306081 98.481469 L 67.556378 98.620802 L 68.062807 99.272184 L 68.819901 99.453681 L 69.361172 99.993018 L 68.644978 100.750518 L 68.386882 100.411393 L 68.045392 100.413756 L 67.936106 100.650029 L 68.177337 101.033913 L 67.763327 101.425307 L 67.248289 101.201843 L 66.759473 101.421569 L 66.504950 101.221579 L 66.066653 101.542563 L 65.860121 101.461160 L 65.464813 101.834446 L 65.299862 101.516737 L 64.436880 102.228457 L 64.238485 102.502440 L 64.314951 102.687148 L 64.070983 102.826723 L 63.687879 101.702523 L 63.066667 102.014525 L 62.933666 101.755583 L 62.582930 101.789654 L 62.425598 101.405461 L 62.030070 101.562958 L 61.705116 102.041132 L 61.134204 101.848453 L 60.889389 101.542673 L 59.906589 101.915058 L 59.851726 101.650035 L 60.039216 101.475387 L 59.810794 100.919427 L 60.081501 100.643750 L 59.503969 100.733851 L 59.264630 100.481801 L 59.605009 100.392262 L 59.958593 99.988653 L 60.405168 99.875937 L 60.883991 99.257957 L 61.316801 99.403876 L 61.563507 99.167055 L 62.305725 99.349585 L 62.925651 99.254461 L 63.185177 99.502486 L 63.747096 99.378776 L 64.352915 99.901181 L 64.908238 99.875816 L 65.627114 99.532073 L 65.696963 99.122175 L 66.306081 98.481469 Z ' fill='#3A679E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.51'/>\n <path id='svg_3c9aaa3e0504a623_e49' d='M 69.444422 57.794349 L 69.547694 57.955913 L 69.330145 57.961927 L 69.393034 58.267465 L 69.213372 58.369802 L 69.029314 58.239825 L 69.139457 57.888605 L 69.444422 57.794349 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e50' d='M 68.323597 58.679991 L 68.359131 58.857057 L 68.581638 58.891239 L 68.248758 59.376240 L 68.514792 59.340135 L 68.802948 59.027681 L 69.020155 59.067536 L 69.198069 58.776324 L 69.274898 59.130743 L 69.527871 59.231090 L 68.872421 59.218788 L 68.616646 59.660932 L 68.677698 59.894852 L 68.532394 59.652214 L 68.265898 59.927164 L 68.238521 59.670641 L 68.071053 59.822914 L 67.857616 59.735255 L 67.492708 60.348035 L 67.479504 59.892136 L 68.133568 59.316880 L 67.954863 58.833639 L 68.043743 59.061258 L 68.205208 59.020424 L 68.323597 58.679991 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e51' d='M 67.901837 60.614651 L 67.924221 60.850682 L 68.270186 60.874760 L 68.048910 60.934560 L 68.106741 61.185718 L 68.478961 61.118399 L 68.470913 61.685540 L 68.278146 61.587359 L 68.033705 61.731365 L 68.037311 61.418461 L 67.873020 61.295224 L 67.725407 61.376111 L 67.767473 61.691191 L 67.512169 61.651226 L 67.632537 61.271882 L 67.935095 61.149063 L 67.603181 60.727775 L 67.901837 60.614651 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e52' d='M 68.161131 60.681235 L 68.237477 60.783219 L 68.078309 60.828605 L 68.161131 60.681235 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e53' d='M 67.385500 63.763647 L 67.652239 63.807538 L 67.530002 63.936865 L 67.385500 63.763647 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e54' d='M 64.173990 60.672548 L 65.102851 61.057753 L 65.274795 61.285350 L 65.172689 61.371911 L 65.536816 61.699239 L 65.483438 62.117053 L 65.188697 61.985041 L 65.162167 62.294142 L 64.763121 62.440908 L 64.880179 62.530688 L 65.495499 62.447944 L 65.789701 62.769841 L 65.983612 62.389562 L 66.186031 62.474551 L 66.085904 62.681269 L 66.247568 62.686789 L 66.048985 63.005135 L 66.253637 63.071289 L 66.435860 62.765026 L 66.639160 62.824561 L 66.782463 62.671463 L 66.854840 63.038514 L 66.522629 63.148295 L 66.610893 63.495391 L 66.813742 63.575805 L 66.915056 63.498184 L 66.721817 63.269873 L 67.380795 62.936266 L 67.346174 63.590505 L 66.885030 63.642312 L 66.575128 64.163935 L 66.433254 63.923145 L 66.172508 63.869755 L 66.154900 63.921334 L 65.921273 63.875549 L 65.722535 63.080689 L 64.311192 63.680132 L 64.003608 63.243826 L 63.952429 62.764894 L 63.648332 63.172812 L 63.262809 62.963400 L 63.227594 62.352116 L 63.431443 61.870874 L 63.304962 61.271068 L 63.554735 60.957000 L 63.414072 60.869890 L 64.173990 60.672548 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e55' d='M 66.142397 63.957959 L 66.064927 64.184891 L 66.243533 64.128335 L 66.226249 64.362837 L 66.426767 64.386761 L 66.110378 64.545061 L 66.283674 64.804443 L 65.946933 65.105176 L 65.991649 65.855519 L 65.637933 65.798018 L 65.625839 65.199564 L 65.358650 64.944624 L 65.605609 64.890256 L 65.475863 64.711408 L 65.272904 64.787666 L 65.409808 64.619603 L 65.781851 64.703415 L 66.127970 64.509669 L 65.575012 64.380385 L 66.059111 64.346203 L 65.996365 64.084973 L 66.142397 63.957959 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e56' d='M 67.218868 59.576241 L 67.321370 59.801069 L 67.170448 59.741830 L 67.218868 59.576241 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e57' d='M 67.094706 59.524171 L 67.073103 59.760411 L 67.254534 59.871236 L 67.065824 60.259199 L 67.215251 60.783890 L 66.885470 60.937560 L 66.654222 60.260903 L 66.957649 60.258902 L 66.887625 59.717202 L 67.094706 59.524171 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e58' d='M 66.793204 61.520138 L 66.663194 62.018278 L 66.772007 62.250647 L 66.636576 62.371785 L 65.961062 62.214036 L 66.165252 61.633119 L 66.454969 61.894579 L 66.793204 61.520138 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e59' d='M 65.877713 58.167546 L 66.033901 58.316720 L 65.671015 58.693041 L 66.199654 58.854704 L 66.340757 59.327281 L 66.491283 59.305259 L 66.606396 59.549492 L 66.472263 59.519465 L 66.313733 59.803619 L 66.361812 59.461458 L 66.122780 59.193533 L 65.943295 59.104664 L 65.687947 59.430421 L 65.156779 58.537689 L 65.556970 58.568088 L 65.877713 58.167546 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e60' d='M 66.365595 57.859656 L 66.374972 58.495294 L 66.187208 58.642708 L 66.365595 57.859656 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e61' d='M 66.051151 60.496934 L 66.066191 61.087328 L 65.908629 60.681510 L 66.051151 60.496934 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e62' d='M 65.787283 61.464518 L 65.893907 61.622761 L 65.713235 61.703593 L 65.596242 61.520237 L 65.787283 61.464518 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e63' d='M 65.119256 60.118898 L 65.382564 60.400864 L 65.871292 60.378720 L 65.707825 60.598676 L 65.793054 60.926104 L 65.310648 61.037710 L 64.964826 60.790872 L 64.810694 60.439388 L 65.119256 60.118898 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e64' d='M 65.797892 61.019723 L 65.775200 61.230433 L 65.468057 61.189247 L 65.797892 61.019723 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e65' d='M 65.066592 64.394006 L 64.804549 64.607872 L 65.022207 64.621407 L 64.997062 64.847135 L 64.619774 64.813558 L 64.600534 64.598450 L 65.066592 64.394006 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e66' d='M 63.266503 63.356311 L 64.170594 64.045316 L 64.149660 64.509636 L 64.456968 64.755672 L 63.873654 65.159885 L 64.534797 64.926548 L 64.530785 65.168889 L 64.663027 65.180027 L 64.025576 65.193650 L 64.024443 65.354762 L 63.598109 65.267192 L 63.098518 64.170543 L 62.753532 64.097550 L 62.970761 63.482012 L 63.266503 63.356311 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e67' d='M 63.561728 63.266893 L 63.849664 63.497382 L 63.577099 63.466234 L 63.561728 63.266893 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.54'/>\n <path id='svg_3c9aaa3e0504a623_e68' d='M 79.364414 45.033923 L 79.404137 45.184240 L 79.129407 45.296856 L 79.364414 45.033923 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e69' d='M 78.572314 39.968967 L 78.589323 40.467173 L 78.824166 39.979292 L 79.274589 40.286325 L 79.010347 40.400833 L 79.156123 40.763541 L 78.827156 40.690087 L 79.144469 41.171218 L 78.643669 41.723803 L 78.866022 41.948828 L 78.724094 42.071725 L 78.378866 41.880310 L 78.169805 42.134778 L 77.969980 41.959140 L 77.947441 41.523153 L 78.141450 41.542822 L 78.062333 41.228115 L 78.247371 40.755680 L 78.109555 40.641832 L 78.572314 39.968967 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e70' d='M 78.672859 42.567358 L 78.885163 42.627827 L 79.032566 42.983884 L 79.235504 42.786302 L 79.082845 43.358578 L 78.894189 43.118402 L 78.542486 43.072412 L 78.727612 43.355554 L 78.521409 43.436584 L 78.187781 42.864495 L 78.253528 42.605069 L 78.491505 42.727602 L 78.672859 42.567358 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e71' d='M 78.392378 42.007813 L 78.607002 42.103444 L 78.554228 42.246592 L 78.392378 42.007813 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e72' d='M 78.447801 45.573094 L 78.056639 46.277074 L 77.697029 46.243584 L 77.903034 45.816480 L 78.447801 45.573094 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e73' d='M 77.934358 42.746073 L 78.066291 42.846233 L 77.858880 43.030501 L 77.934358 42.746073 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e74' d='M 77.579014 41.348010 L 77.856098 41.507816 L 77.984052 42.509746 L 77.679702 42.474949 L 77.462473 42.177008 L 77.760589 42.784444 L 77.600233 42.989163 L 77.365072 42.922304 L 77.864542 43.235989 L 77.802258 43.623986 L 77.595671 43.607372 L 77.763129 43.815423 L 77.730573 44.244516 L 77.486221 44.349954 L 77.196482 44.149249 L 77.286725 44.499534 L 76.801064 44.692092 L 76.706215 44.888597 L 76.900048 44.939479 L 76.735350 45.067401 L 76.898949 45.207306 L 76.726059 45.073942 L 76.353675 45.421755 L 76.884765 45.276846 L 76.924621 45.729007 L 77.187005 45.088950 L 77.240493 45.259311 L 77.612108 44.825687 L 77.062932 45.662094 L 77.136100 45.820526 L 77.260228 45.521035 L 77.465496 45.589971 L 77.465001 45.978572 L 77.207235 46.119026 L 76.785023 46.053356 L 76.908129 46.405071 L 76.980363 46.210171 L 77.103733 46.406434 L 77.413052 46.351891 L 77.436250 46.610668 L 76.967125 46.911182 L 77.035423 47.102993 L 77.283647 46.965000 L 77.320918 47.175545 L 77.066505 47.172731 L 76.864646 47.429794 L 76.936209 47.167156 L 76.760692 47.226736 L 76.717330 47.064908 L 76.765035 47.352942 L 76.542835 47.536826 L 76.819513 47.504171 L 76.617665 47.896697 L 76.932757 47.612577 L 76.623854 48.243058 L 77.012522 47.846870 L 76.961771 48.319514 L 77.157067 48.527002 L 76.984288 48.530586 L 77.014391 48.775413 L 76.911119 48.624073 L 76.897574 48.899430 L 76.721893 48.769442 L 76.751677 49.048758 L 76.597500 49.127886 L 76.733349 49.767843 L 76.933031 49.939128 L 76.703774 49.802157 L 76.556359 49.945615 L 76.736999 50.691538 L 76.635960 50.417290 L 76.555402 50.587551 L 76.435211 50.399380 L 76.291446 50.473362 L 76.440367 50.912637 L 76.334072 51.333749 L 76.209878 51.312948 L 76.350740 51.484099 L 76.336139 51.758875 L 76.173596 51.784029 L 76.357853 51.881694 L 76.303210 52.167606 L 76.184425 51.883915 L 76.084199 52.134183 L 76.047851 51.629557 L 75.853314 51.794233 L 75.660746 51.728431 L 75.592634 51.428171 L 75.765567 51.342468 L 75.757333 51.022143 L 75.971923 51.016833 L 75.957191 50.745817 L 75.775309 50.738594 L 75.815439 50.600558 L 75.964447 50.706776 L 75.861011 50.376270 L 76.039232 50.205689 L 76.294052 49.165223 L 76.331917 48.616014 L 76.096018 48.736272 L 76.212890 47.958245 L 76.012075 48.397146 L 76.308927 47.462227 L 75.953364 48.354542 L 76.159171 47.280092 L 75.831820 47.906956 L 75.774110 47.363100 L 75.320125 47.245932 L 75.655468 47.467725 L 75.754199 47.993427 L 75.699722 47.801298 L 75.545743 47.919324 L 75.521918 47.706515 L 75.506987 48.173188 L 75.382145 48.353278 L 75.293199 48.079757 L 75.134108 48.578501 L 74.611209 48.038505 L 74.637760 47.872103 L 74.984583 47.866166 L 74.876177 47.816800 L 75.081258 47.668232 L 74.861114 47.740719 L 74.953369 47.545423 L 74.702606 47.348775 L 74.812959 47.564850 L 74.595156 47.919214 L 74.502891 47.578021 L 74.131078 47.839394 L 73.973142 47.687560 L 74.064023 47.569105 L 73.734187 47.500565 L 73.798659 46.974950 L 73.659083 46.845214 L 74.024926 46.602291 L 74.279614 46.617793 L 74.450634 46.853516 L 74.430459 46.669578 L 74.674933 46.784921 L 74.585481 46.626864 L 74.860839 46.459197 L 75.030540 47.008044 L 75.140211 46.830318 L 74.965727 46.614879 L 75.229321 46.728409 L 75.107391 46.561116 L 75.333219 46.337213 L 75.686429 46.865280 L 75.828137 46.635209 L 75.641670 46.410216 L 75.764644 46.138597 L 75.914181 46.234040 L 75.859306 45.959716 L 76.324440 46.058689 L 76.086013 45.833389 L 75.708473 45.848089 L 75.766843 45.534360 L 75.634359 45.757241 L 75.462723 45.667966 L 75.495279 45.236167 L 75.169841 45.275143 L 75.183913 44.927166 L 75.351459 44.846202 L 75.090295 44.834812 L 75.289186 44.598319 L 75.072758 44.625201 L 75.139122 44.367533 L 74.890964 44.832613 L 74.888677 44.444473 L 74.550508 44.370359 L 74.200014 44.583752 L 74.071323 44.410809 L 74.198090 44.136660 L 74.493644 44.201110 L 74.471249 43.789398 L 74.669040 43.561041 L 74.762933 43.862237 L 75.178251 44.190038 L 75.505778 44.089164 L 75.144553 44.110438 L 74.882884 43.787748 L 75.261699 43.342196 L 75.263294 42.760916 L 75.858196 43.017000 L 75.803290 42.676972 L 76.759868 42.579177 L 76.917969 42.298981 L 76.951887 42.740565 L 77.210478 42.933804 L 76.991082 42.663999 L 77.085965 41.448005 L 77.332627 41.415737 L 77.409039 41.684607 L 77.384246 41.383743 L 77.599948 41.488410 L 77.579014 41.348010 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e75' d='M 77.738490 48.441949 L 77.925892 48.487576 L 77.899615 48.724728 L 77.738490 48.441949 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e76' d='M 77.539049 47.972593 L 77.492652 48.353168 L 77.684177 48.304297 L 77.523657 49.085403 L 77.218779 48.879091 L 77.268727 48.518767 L 77.051310 48.231865 L 77.163366 48.090839 L 77.475391 48.248116 L 77.403597 48.069729 L 77.539049 47.972593 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e77' d='M 76.127573 49.170556 L 75.917798 49.869752 L 75.938578 49.402781 L 76.127573 49.170556 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e78' d='M 75.948015 49.170526 L 75.975739 49.199361 L 75.714564 49.861616 L 75.948015 49.170526 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e79' d='M 75.981355 49.071830 L 76.035989 48.910095 L 76.005611 49.074705 L 75.981355 49.071830 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e80' d='M 75.323819 45.587552 L 75.624914 45.860282 L 75.305073 46.145413 L 75.035213 45.786937 L 75.323819 45.587552 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e81' d='M 75.046921 46.189557 L 75.269451 46.363160 L 75.057202 46.562656 L 75.046921 46.189557 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e82' d='M 74.385931 47.805971 L 74.485212 48.018110 L 74.260429 47.936806 L 74.385931 47.805971 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e83' d='M 74.291048 55.842305 L 74.289179 56.213314 L 74.001948 56.349108 L 74.093972 55.860941 L 74.291048 55.842305 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e84' d='M 73.563321 46.137662 L 73.759057 46.318588 L 73.863087 46.175264 L 73.887978 46.446048 L 73.564806 46.465794 L 73.441282 46.254260 L 73.563321 46.137662 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e85' d='M 71.406362 48.451899 L 71.613168 48.674703 L 71.462268 49.041754 L 71.138040 48.747322 L 71.406362 48.451899 Z ' fill='#3A7CA3' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 13.31'/>\n <path id='svg_3c9aaa3e0504a623_e86' d='M 47.793707 60.287993 L 47.861819 60.483696 L 47.682662 60.513381 L 47.793707 60.287993 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e87' d='M 41.481166 73.333909 L 40.954028 73.838156 L 41.155601 74.267470 L 40.998688 74.360176 L 41.237059 74.363067 L 41.429364 74.768105 L 41.170609 74.835777 L 41.452343 75.261265 L 40.568332 75.009887 L 40.722637 75.197606 L 40.493456 75.197551 L 40.537126 75.375310 L 40.731883 75.389713 L 40.941263 75.904389 L 40.546780 75.788683 L 40.562007 76.153085 L 40.142676 75.759371 L 40.296808 76.008441 L 40.203311 76.149787 L 40.102865 76.019952 L 40.118048 76.316133 L 39.956847 76.217403 L 40.004475 76.489187 L 39.684381 76.373008 L 39.825099 76.595504 L 39.571302 76.648762 L 39.504555 76.884275 L 39.307752 76.830589 L 39.299122 76.988448 L 38.359310 75.583679 L 38.683209 75.646787 L 38.694918 75.866567 L 39.076692 75.668029 L 39.302310 75.275447 L 39.514889 75.278361 L 39.619172 74.832533 L 40.487970 74.957035 L 40.171647 74.657280 L 40.297172 74.541530 L 39.881237 74.487954 L 39.968633 74.340034 L 39.830652 74.436346 L 39.345353 74.088699 L 39.368497 74.226570 L 39.185823 74.241687 L 38.827512 74.028449 L 38.787986 73.691082 L 38.627797 73.749023 L 38.847412 73.360367 L 39.048667 73.517094 L 39.219631 73.266309 L 40.012776 73.084844 L 39.149652 73.238768 L 39.012550 73.131736 L 39.289721 72.995624 L 39.044929 72.962091 L 39.264929 72.664469 L 39.029646 72.893210 L 38.864068 72.836974 L 38.604103 72.103364 L 38.925857 71.669905 L 38.870720 71.373878 L 39.279716 71.394129 L 39.137338 71.231058 L 39.445954 70.666654 L 39.422029 70.812904 L 39.732416 70.985221 L 39.848902 70.801283 L 40.163676 71.097421 L 40.138696 71.222010 L 39.803727 71.197339 L 40.238384 71.427641 L 40.365865 72.312589 L 40.268674 71.523347 L 40.369988 71.626916 L 40.328209 71.428355 L 40.450798 71.511034 L 40.511091 71.290550 L 41.168311 71.428147 L 41.245921 71.751759 L 41.356472 71.705307 L 41.430234 71.541818 L 41.125059 71.401364 L 41.248252 71.195150 L 40.833077 70.656430 L 40.788769 70.403776 L 41.070954 70.342295 L 40.755181 70.317744 L 40.913722 70.037659 L 41.223218 70.032106 L 41.940181 69.489790 L 42.009546 69.637040 L 42.619653 69.406814 L 42.817532 69.031001 L 44.273966 68.098819 L 44.580218 67.677443 L 45.051784 68.319435 L 44.947281 68.562689 L 45.093509 68.929740 L 44.770050 69.494309 L 45.075807 69.846244 L 44.599734 70.126967 L 44.252879 70.696560 L 44.009405 70.719439 L 43.879141 71.130579 L 44.180898 71.438294 L 45.049145 70.808011 L 45.185631 70.876837 L 45.040317 71.334539 L 44.448251 71.800971 L 44.155884 71.472971 L 43.781840 71.675083 L 43.507912 71.357847 L 43.604905 72.082969 L 43.242889 72.225853 L 43.585115 72.202919 L 43.570328 72.342110 L 42.819347 72.167758 L 43.229058 72.425283 L 42.926588 72.647889 L 41.865847 72.822483 L 43.138276 72.822131 L 43.368523 72.567607 L 43.360882 72.902281 L 43.485230 72.814929 L 43.537234 73.016183 L 43.481711 73.354265 L 43.089516 73.331001 L 43.574506 73.472456 L 43.350657 73.944616 L 43.041117 73.720603 L 42.954481 73.846105 L 42.897628 73.681462 L 42.167427 73.807855 L 42.788067 73.889534 L 42.935834 74.057804 L 42.757228 74.670199 L 42.437562 74.782123 L 42.272535 74.404407 L 42.288202 74.903282 L 42.087222 74.787730 L 42.042364 74.959355 L 41.672728 74.301113 L 41.865957 74.859635 L 41.694717 74.727646 L 41.573558 74.836381 L 41.278300 74.287974 L 41.241117 73.676624 L 41.481166 73.333909 Z M 41.547149 73.239706 L 41.597746 73.167469 L 42.097579 73.206598 L 41.443636 73.104975 L 41.547149 73.239706 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e88' d='M 41.199986 75.277086 L 41.541563 75.402159 L 41.585982 75.586042 L 41.259400 75.629097 L 41.199986 75.277086 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e89' d='M 40.315895 70.520043 L 40.579653 70.588484 L 40.642091 70.900497 L 40.775301 70.811398 L 40.960009 71.312254 L 40.423047 71.193084 L 40.527264 70.973424 L 40.315895 70.520043 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e90' d='M 39.251900 74.613962 L 39.383285 74.984478 L 39.197918 75.127461 L 38.974453 74.936761 L 38.759071 75.157751 L 38.717621 74.922523 L 39.251900 74.613962 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e91' d='M 38.563204 73.131296 L 38.710915 73.565338 L 38.394108 73.487354 L 38.287571 73.261581 L 38.563204 73.131296 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e92' d='M 38.651259 76.384014 L 38.659955 76.670597 L 38.517686 76.448123 L 38.651259 76.384014 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e93' d='M 36.466879 80.610856 L 36.725838 80.775445 L 36.591733 80.607449 L 36.201317 80.482715 L 36.189168 79.919477 L 36.716235 79.644889 L 36.782301 79.678459 L 36.697159 79.566003 L 37.110498 79.578098 L 36.691056 79.550116 L 36.854171 79.309711 L 36.690518 79.092074 L 36.680392 79.531701 L 36.436919 79.663690 L 36.462316 79.347322 L 36.227308 79.039915 L 36.373260 78.850755 L 36.211531 79.021995 L 36.020171 78.732772 L 36.259302 78.679230 L 36.742885 78.942229 L 36.251441 78.660990 L 35.782360 78.735225 L 35.423454 78.205476 L 35.641279 78.139410 L 35.827272 77.571048 L 36.130556 77.551961 L 36.421141 77.805286 L 36.165794 77.578942 L 36.613325 77.508819 L 36.598418 77.613426 L 36.827169 77.544606 L 37.037604 77.204107 L 37.104764 77.584933 L 37.179489 77.537020 L 37.285904 77.746807 L 37.205656 77.509424 L 37.370342 77.596259 L 37.403612 77.336040 L 37.738384 77.366319 L 37.886417 77.234193 L 37.829484 77.346881 L 38.078235 77.679344 L 37.851529 77.826671 L 38.189225 77.985487 L 38.410204 77.882808 L 38.053058 77.761748 L 38.302634 77.710898 L 38.646542 78.030509 L 38.366732 78.408171 L 38.165290 78.169172 L 38.299324 78.102490 L 38.082138 78.210435 L 37.957076 78.067230 L 37.989949 78.230610 L 37.757801 78.001099 L 37.975161 77.936396 L 37.617950 77.970204 L 37.811695 78.076137 L 37.722750 78.208642 L 38.034862 78.302073 L 37.831727 78.322733 L 38.030300 78.373285 L 37.814312 78.548626 L 38.346667 78.573858 L 38.218086 78.908146 L 37.296110 78.989430 L 38.058500 79.030570 L 38.083128 79.299002 L 37.840269 79.520443 L 37.469304 79.437917 L 37.641368 79.595139 L 37.267720 79.577767 L 37.125714 79.421404 L 37.200048 79.615973 L 37.524496 79.597283 L 37.558085 80.007433 L 37.148066 79.727887 L 36.952348 79.764863 L 37.209163 79.895355 L 37.144262 80.052401 L 37.269501 79.935903 L 37.567979 80.158279 L 37.341218 80.129802 L 37.442038 80.325889 L 37.238969 80.212701 L 37.223467 80.387953 L 37.137545 80.242717 L 37.056899 80.384766 L 37.531093 80.554301 L 37.298339 80.712787 L 37.548080 80.735875 L 37.253262 80.746650 L 37.327475 80.895626 L 36.784357 80.621334 L 37.115940 80.903432 L 36.910316 80.892695 L 36.922711 80.900573 L 36.695740 80.907346 L 37.036614 81.118265 L 36.828104 81.189454 L 37.233361 81.491309 L 36.990383 81.474696 L 37.059780 81.578341 L 37.333687 81.509065 L 37.063519 81.721438 L 37.266675 81.814218 L 37.295206 82.086772 L 37.478979 82.132180 L 37.035516 82.579272 L 36.904900 83.012181 L 36.706753 82.981037 L 36.934806 83.189303 L 37.000223 83.762721 L 36.829478 83.922252 L 36.492287 83.718127 L 36.685615 83.940063 L 36.437238 83.782380 L 36.290835 83.869050 L 36.374030 84.047413 L 36.966964 84.100528 L 36.982819 84.303476 L 37.177289 84.343122 L 37.046840 84.604297 L 36.714970 84.423492 L 36.077332 84.430990 L 35.830549 84.083443 L 35.851570 83.023461 L 35.649535 82.705280 L 35.879320 82.565121 L 35.820027 82.153575 L 36.100069 81.953881 L 35.977248 80.931402 L 36.466879 80.610856 Z M 37.274366 78.988256 L 37.319262 78.785766 L 37.005764 78.973762 L 37.274366 78.988256 Z M 36.692935 82.968418 L 36.776594 82.956054 L 36.687538 82.829067 L 36.384595 82.909976 L 36.304336 82.750225 L 36.363069 82.928798 L 36.639548 82.919662 L 36.692935 82.968418 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e94' d='M 37.900675 77.205972 L 37.598434 77.123076 L 37.823438 76.800057 L 38.082369 76.772131 L 38.317091 77.173377 L 37.998514 77.012318 L 37.900675 77.205972 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e95' d='M 37.720308 79.645164 L 37.881763 79.804254 L 37.705136 80.069949 L 37.548970 79.792975 L 37.752798 79.796173 L 37.613387 79.691671 L 37.720308 79.645164 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e96' d='M 37.686556 76.173589 L 37.876376 76.365499 L 37.568695 76.489683 L 37.420214 76.328117 L 37.686556 76.173589 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e97' d='M 37.598929 80.771278 L 37.594146 80.968134 L 37.383546 81.008045 L 37.481453 81.064722 L 37.286135 80.986825 L 37.598929 80.771278 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e98' d='M 37.238255 76.935400 L 37.277285 77.195750 L 37.145625 77.100648 L 37.238255 76.935400 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e99' d='M 37.122856 80.847404 L 37.260221 80.887138 L 37.148077 81.022767 L 37.122856 80.847404 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e100' d='M 36.452805 84.552019 L 36.775385 84.639589 L 36.578023 85.098622 L 36.452805 84.552019 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e101' d='M 36.342509 85.402708 L 36.361221 85.543339 L 36.176569 85.465497 L 36.342509 85.402708 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e102' d='M 36.154139 85.471105 L 36.284809 85.644214 L 36.072341 85.553673 L 36.154139 85.471105 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e103' d='M 35.942990 84.925502 L 36.051176 85.060899 L 35.870426 85.167327 L 35.942990 84.925502 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e104' d='M 35.536247 84.930944 L 35.722066 85.035931 L 35.646907 85.445498 L 35.874329 85.660430 L 35.631251 85.518238 L 35.775400 85.648260 L 35.612286 85.644104 L 35.942605 85.938097 L 35.675999 85.766275 L 35.764658 85.925772 L 35.502857 86.118440 L 35.521295 86.291241 L 35.205587 86.340661 L 35.070036 86.141693 L 35.063758 86.280577 L 34.882800 86.253816 L 34.818119 86.351953 L 35.198056 86.478258 L 34.962762 86.429288 L 34.841460 86.562685 L 35.035832 86.640097 L 34.724138 86.710463 L 34.761683 86.476884 L 34.524806 86.384750 L 34.630629 86.208562 L 34.878808 86.254443 L 34.678235 86.126433 L 35.030929 85.868897 L 35.101624 85.554982 L 34.964313 85.453458 L 35.415968 85.386282 L 35.536247 84.930944 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e105' d='M 34.868550 86.807269 L 35.104163 87.029688 L 34.809565 86.989283 L 34.868550 86.807269 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e106' d='M 34.705997 78.997862 L 34.806596 79.163605 L 35.037811 79.102585 L 34.885977 79.342814 L 34.845022 79.182460 L 34.467141 79.182129 L 34.705997 78.997862 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e107' d='M 34.491163 87.283826 L 34.668725 87.455230 L 34.336471 87.417300 L 34.491163 87.283826 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e108' d='M 33.971893 88.114627 L 34.182273 88.206047 L 33.852547 88.163663 L 33.971893 88.114627 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e109' d='M 34.144242 87.644403 L 34.132467 87.974228 L 33.830888 87.983957 L 33.899109 87.709589 L 34.144242 87.644403 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e110' d='M 28.698536 74.860569 L 29.024634 74.924942 L 29.108302 75.092334 L 28.940416 75.195793 L 29.076253 75.319591 L 28.709531 75.091509 L 28.698536 74.860569 Z ' fill='#3A6FA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 14.02'/>\n <path id='svg_3c9aaa3e0504a623_e111' d='M 65.811064 93.757531 L 67.084031 93.865365 L 66.597854 93.901153 L 66.539029 94.022561 L 66.381427 93.839364 L 66.416737 95.063875 L 67.377431 95.415560 L 67.874570 95.891128 L 67.739348 96.135118 L 66.343166 97.069267 L 65.924329 97.020683 L 65.422330 96.689935 L 63.988393 97.872582 L 63.828719 98.519071 L 63.112283 98.571394 L 62.813419 98.843518 L 62.378102 98.934322 L 62.319743 99.177796 L 61.817052 99.091731 L 61.819020 98.904065 L 61.630783 98.831743 L 60.146643 98.513838 L 59.948951 98.259347 L 60.113792 97.938681 L 60.719117 97.863401 L 60.482713 97.702727 L 61.054252 97.517777 L 61.142714 97.278086 L 62.176606 97.553048 L 62.497624 97.468709 L 62.489806 97.241364 L 62.671205 97.140391 L 63.004537 97.175727 L 62.922012 96.993878 L 63.253200 96.867452 L 63.231816 96.574305 L 63.060015 96.510812 L 63.131897 96.403648 L 62.536961 96.319814 L 62.637352 96.131918 L 62.433888 95.962515 L 62.766517 95.716073 L 63.051044 95.730630 L 63.009770 95.420463 L 63.318870 95.106503 L 63.178822 94.971919 L 65.811064 93.757531 Z ' fill='#392E59' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 17.97'/>\n <path id='svg_3c9aaa3e0504a623_e112' d='M 66.011406 87.311423 L 66.740452 87.571938 L 67.258459 88.124687 L 67.426400 88.485528 L 67.358158 89.016552 L 67.715985 89.739903 L 68.293461 89.722752 L 68.747865 90.187259 L 69.023464 90.106790 L 68.900227 90.929048 L 68.518112 91.219237 L 68.476959 91.584112 L 68.628486 91.685251 L 68.233662 92.383942 L 67.093937 93.227837 L 66.924259 93.670884 L 66.378831 93.482625 L 64.875133 93.769812 L 65.010959 93.830787 L 64.548585 93.938753 L 64.561888 94.183162 L 64.392628 94.268974 L 64.518185 94.290963 L 64.336644 94.286192 L 64.460409 94.334391 L 63.259334 94.820822 L 63.540288 94.816765 L 63.178822 94.971919 L 63.318870 95.106503 L 63.009770 95.420463 L 63.051044 95.730630 L 62.766517 95.716073 L 62.433888 95.962515 L 62.637352 96.131918 L 62.536961 96.319814 L 63.131897 96.403648 L 63.253200 96.867452 L 62.922012 96.993878 L 63.004537 97.175727 L 62.489806 97.241364 L 62.497624 97.468709 L 61.335931 97.436594 L 61.176005 97.269577 L 61.054252 97.517777 L 60.650325 97.578522 L 60.603136 97.257879 L 60.980589 97.102712 L 61.109763 96.823969 L 60.819167 96.700655 L 60.481437 96.900513 L 60.004770 96.883581 L 59.713086 96.531151 L 59.327453 96.785565 L 59.263795 96.412245 L 59.083210 96.548303 L 58.901877 96.302850 L 58.629542 96.369752 L 58.203813 95.783085 L 57.981965 95.847875 L 57.710928 95.585018 L 57.477405 95.696173 L 56.970063 95.386896 L 56.645340 95.070365 L 56.645505 94.394586 L 56.946204 94.376061 L 56.936090 93.504690 L 57.203092 93.673511 L 57.639575 93.434545 L 57.278459 92.873000 L 56.300717 93.272926 L 56.094789 92.482419 L 55.869676 92.375828 L 55.616583 92.611880 L 55.003528 92.775424 L 54.896882 92.631945 L 54.745981 92.852606 L 54.416256 92.836388 L 54.023642 93.219877 L 53.695181 93.038797 L 53.908858 92.562350 L 53.632622 92.245653 L 54.298780 91.956771 L 54.565066 92.011580 L 54.078834 91.378295 L 54.131058 90.990409 L 53.892532 91.167640 L 53.548074 91.123112 L 53.550437 90.703451 L 53.953387 90.741877 L 54.403392 90.533202 L 54.448689 89.717792 L 54.743837 89.575909 L 54.935197 89.180050 L 55.449466 89.583550 L 55.928222 88.884849 L 56.218203 88.996828 L 56.407638 88.666827 L 57.116070 88.456886 L 57.299019 87.957350 L 57.549694 88.142498 L 58.513199 88.246837 L 58.890640 87.553192 L 59.168527 87.876046 L 59.662071 87.700079 L 59.919728 87.893968 L 60.209488 87.772533 L 60.406840 88.022768 L 60.645420 87.797711 L 61.262214 87.829649 L 61.399205 88.407400 L 61.556372 88.311154 L 62.033149 88.559685 L 62.277062 88.396692 L 62.660606 88.550615 L 63.252991 88.162399 L 63.261951 87.901938 L 64.350684 88.412084 L 64.613233 87.559624 L 66.011406 87.311423 Z ' fill='#3C4A81' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 16.21'/>\n <path id='svg_3c9aaa3e0504a623_e113' d='M 54.165691 98.122773 L 54.909459 98.293342 L 54.742903 98.453939 L 54.840270 98.899569 L 55.291640 99.407702 L 55.622310 99.308048 L 55.827370 99.572180 L 56.161658 99.603350 L 56.253990 99.172420 L 56.121176 98.770790 L 56.788400 98.982743 L 57.038229 98.743633 L 57.359972 99.406328 L 57.281317 99.696562 L 57.779326 99.574567 L 57.631856 99.819525 L 57.717173 100.071947 L 56.775086 100.170261 L 56.970646 100.538105 L 57.537864 100.548516 L 57.572804 101.039740 L 57.379817 101.055825 L 57.316676 101.254968 L 56.891485 101.277859 L 56.685415 101.009681 L 56.492593 101.078440 L 56.663865 101.546444 L 56.111853 101.913233 L 56.513900 102.483760 L 56.501807 102.874989 L 56.301761 103.050077 L 55.594978 102.773014 L 55.389502 102.452909 L 55.274158 102.563822 L 55.018250 102.292224 L 54.813235 102.315906 L 54.891483 102.094027 L 54.654782 101.942027 L 54.388143 102.153210 L 54.120470 101.666735 L 53.805301 101.923963 L 53.693466 101.741564 L 53.496972 101.934199 L 53.348358 101.389025 L 53.109558 101.362913 L 53.104060 101.170618 L 52.690886 100.921373 L 52.921397 100.808404 L 52.606998 100.270882 L 51.964500 100.449290 L 52.087913 99.635960 L 52.672503 99.299033 L 53.342311 99.562726 L 53.415897 99.775854 L 53.889883 99.772423 L 53.911937 99.161315 L 53.619813 98.961600 L 54.027863 98.763049 L 53.909134 98.395273 L 54.080252 97.981010 L 54.165691 98.122773 Z ' fill='#DBF4E4' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 5.57'/>\n <path id='svg_3c9aaa3e0504a623_e114' d='M 57.810000 98.762423 L 58.014289 98.800794 L 57.937690 99.022674 L 58.224351 99.054822 L 58.220316 99.334743 L 58.509691 99.373333 L 58.553878 99.613597 L 59.086255 99.673341 L 58.780739 99.925709 L 59.420884 100.348910 L 59.319185 100.602257 L 59.732612 100.749793 L 60.081501 100.643750 L 59.810794 100.919427 L 60.039216 101.475387 L 59.833806 101.878556 L 60.889389 101.542673 L 61.134204 101.848453 L 61.791489 102.108561 L 61.914683 102.619939 L 62.052873 102.788275 L 62.210282 102.720923 L 61.575887 103.531087 L 61.595271 103.930441 L 61.259365 103.984765 L 61.534273 104.587221 L 61.535317 105.145577 L 61.147650 106.041465 L 61.363308 106.424504 L 60.860749 106.747533 L 60.876635 107.440738 L 60.638659 107.470148 L 60.409149 107.882004 L 59.918189 107.481802 L 59.931030 106.991458 L 59.637663 106.840933 L 59.159511 105.978137 L 58.678281 105.777433 L 58.159560 105.829051 L 57.839180 105.592174 L 57.784536 105.351944 L 58.272309 104.574522 L 57.723957 104.126770 L 57.423971 104.421424 L 56.967369 104.344407 L 56.433915 104.602558 L 56.305279 104.453252 L 56.790633 103.945779 L 56.584771 103.816560 L 56.322101 103.081796 L 56.501807 102.874989 L 56.499794 102.413593 L 56.112391 101.909978 L 56.663865 101.546444 L 56.468010 101.317164 L 56.519266 101.047458 L 56.689681 101.012320 L 56.891485 101.277859 L 57.316676 101.254968 L 57.379817 101.055825 L 57.572804 101.039740 L 57.537864 100.548516 L 56.970646 100.538105 L 56.775086 100.170261 L 57.717173 100.071947 L 57.631856 99.819525 L 57.777622 99.571048 L 57.281317 99.696562 L 57.359972 99.406328 L 57.097270 99.037517 L 57.810000 98.762423 Z ' fill='#DEF5E5' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2019&amp;lt;br/&amp;gt;Items per Head: 5.49'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c4)'>\n <path id='svg_3c9aaa3e0504a623_e115' d='M 49.325134 198.831326 L 50.004320 199.385010 L 50.200298 200.248190 L 50.017964 200.581444 L 50.477414 200.955467 L 50.164653 201.206780 L 50.482212 201.481827 L 50.422222 202.153815 L 50.196548 202.347494 L 49.205045 202.310869 L 48.553319 201.436697 L 48.664275 200.820103 L 48.356077 199.916430 L 48.591525 199.324705 L 49.325134 198.831326 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_3c9aaa3e0504a623_e116' d='M 51.572843 198.766040 L 51.441975 199.070930 L 51.361462 198.920811 L 51.572843 198.766040 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_3c9aaa3e0504a623_e117' d='M 51.839976 198.066602 L 51.834435 198.558892 L 51.519497 198.676083 L 51.656840 198.161595 L 51.839976 198.066602 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_3c9aaa3e0504a623_e118' d='M 52.610461 196.917949 L 52.921397 197.416276 L 52.690886 197.529245 L 53.104060 197.778490 L 53.109558 197.970785 L 53.348358 197.996897 L 53.496972 198.542071 L 53.693466 198.349436 L 53.805301 198.531835 L 54.120470 198.274607 L 54.388143 198.761082 L 54.654782 198.549899 L 54.891483 198.701899 L 54.813235 198.923778 L 55.018250 198.900096 L 55.274158 199.171694 L 55.389502 199.060781 L 55.786448 199.499298 L 56.322101 199.629934 L 56.584771 200.424432 L 56.790633 200.553651 L 56.305279 201.061124 L 56.425339 201.207626 L 56.967369 200.952279 L 57.423971 201.029296 L 57.723957 200.734642 L 58.272309 201.182394 L 58.270660 201.369410 L 57.784536 201.959816 L 58.048680 202.315159 L 57.828021 202.516194 L 57.926036 202.647414 L 57.302427 202.929785 L 57.170669 203.452598 L 57.315730 203.674686 L 57.082866 204.300439 L 56.876830 204.487896 L 56.486557 204.053536 L 55.796948 204.126561 L 55.364368 204.754514 L 54.892539 206.138064 L 54.760681 206.204295 L 54.660170 205.791847 L 54.491074 206.010857 L 53.888574 205.926749 L 53.177888 206.433542 L 53.181681 206.747599 L 53.403441 206.909659 L 53.357648 207.213218 L 52.779337 207.360764 L 52.599411 207.233722 L 52.256438 207.419255 L 52.170351 207.252413 L 51.590335 207.296061 L 51.529975 207.024552 L 51.333942 206.950888 L 50.953257 207.604623 L 50.475380 207.754131 L 50.416582 207.092421 L 50.891512 205.980754 L 51.844704 204.995304 L 52.044391 204.288963 L 51.980420 203.833085 L 52.501779 203.386847 L 52.737005 202.664063 L 53.425842 202.342541 L 53.639009 201.777535 L 53.218524 201.142577 L 53.417517 201.078269 L 53.275157 200.550407 L 52.749795 200.121906 L 52.316275 200.008540 L 52.197665 199.631310 L 51.777395 199.212781 L 51.800724 198.834363 L 52.165863 198.311263 L 51.959112 197.758591 L 51.973416 197.072466 L 52.610461 196.917949 Z ' fill='#150E16' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.86'/>\n <path id='svg_3c9aaa3e0504a623_e119' d='M 65.833724 206.827607 L 65.519951 206.024325 L 65.815924 205.261030 L 65.413249 205.251345 L 65.672610 204.936912 L 65.581135 204.681069 L 65.138166 204.592399 L 64.898155 204.848187 L 64.570080 204.813477 L 64.172957 203.827675 L 63.998804 203.725097 L 63.666715 203.878085 L 63.373985 203.513947 L 62.849943 203.918457 L 62.663487 203.842474 L 62.783250 203.287405 L 63.190322 202.857574 L 62.707937 202.662201 L 62.428677 203.051187 L 61.606451 203.141728 L 61.162493 202.746200 L 61.281178 202.075863 L 61.535701 201.745423 L 61.534273 201.195093 L 61.259365 200.592637 L 61.595271 200.538313 L 61.575887 200.138959 L 62.205070 199.400094 L 61.914683 199.227811 L 61.716287 198.610226 L 62.030070 198.170830 L 62.423619 198.013498 L 62.582930 198.397526 L 62.933666 198.363455 L 63.066667 198.622397 L 63.687879 198.310395 L 64.070983 199.434595 L 64.314951 199.295020 L 64.238485 199.110312 L 64.436880 198.836329 L 65.299862 198.124609 L 65.464813 198.442318 L 65.860121 198.069032 L 66.066653 198.150435 L 66.504950 197.829451 L 66.759473 198.029441 L 67.248289 197.809715 L 67.689665 198.033894 L 67.853483 197.828186 L 68.035002 197.907951 L 68.190519 197.533863 L 67.936106 197.257901 L 68.045392 197.021628 L 68.386882 197.019265 L 68.644978 197.358390 L 69.361172 196.600890 L 69.600369 196.782475 L 70.319124 196.771580 L 70.910069 196.966765 L 70.945713 197.274381 L 71.326343 197.501835 L 71.626879 198.258896 L 71.262036 198.486318 L 71.264906 198.865716 L 71.043653 199.150079 L 70.636536 199.393179 L 70.700316 199.549994 L 70.137506 200.207686 L 70.233752 200.343941 L 69.739790 200.268574 L 69.529190 200.449631 L 69.719176 200.490794 L 69.853880 201.085686 L 70.189037 201.388959 L 70.456479 202.373112 L 70.705186 202.458022 L 70.246451 202.945574 L 70.042579 202.889733 L 69.519196 203.190037 L 69.503529 203.691849 L 69.213944 203.910871 L 68.541739 203.838582 L 68.226010 204.224126 L 67.955237 204.285586 L 67.336312 204.987597 L 67.581731 205.147776 L 67.439593 205.433282 L 67.191755 205.456887 L 66.929866 206.046172 L 66.069787 206.463777 L 65.833724 206.827607 Z ' fill='#2E2342' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 18.93'/>\n <path id='svg_3c9aaa3e0504a623_e120' d='M 58.128501 202.392770 L 59.159511 202.586009 L 59.637663 203.448805 L 59.931030 203.599330 L 59.918189 204.089674 L 60.376990 204.497187 L 60.555650 204.440488 L 60.638659 204.078020 L 60.876635 204.048610 L 60.849369 203.390478 L 61.064202 203.188344 L 61.362648 203.032441 L 62.428677 203.051187 L 62.707937 202.662201 L 63.190322 202.857574 L 62.783250 203.287405 L 62.651096 203.828565 L 62.849943 203.918457 L 63.373985 203.513947 L 63.666715 203.878085 L 63.998804 203.725097 L 64.172957 203.827675 L 64.570080 204.813477 L 64.898155 204.848187 L 65.138166 204.592399 L 65.581135 204.681069 L 65.672610 204.936912 L 65.413249 205.251345 L 65.815924 205.261030 L 65.519951 206.024325 L 65.840177 206.820361 L 65.122037 207.540986 L 64.474097 207.488729 L 64.647129 207.690973 L 64.512259 208.153128 L 63.774501 208.706127 L 62.753576 208.550558 L 62.235159 208.691832 L 61.898356 209.039077 L 61.571654 209.102240 L 61.633995 208.962904 L 61.440269 209.020441 L 61.522642 208.753652 L 61.335978 209.141369 L 60.934159 209.273557 L 60.334990 209.958329 L 59.916594 209.829748 L 59.506059 209.955581 L 59.594070 209.776150 L 59.453850 209.761824 L 57.867084 210.822432 L 57.376073 210.795994 L 57.133679 210.420809 L 57.055766 210.839090 L 56.815195 210.612430 L 56.635158 210.677431 L 55.986931 209.953914 L 55.448404 209.786103 L 55.548706 209.947294 L 55.011559 209.458398 L 55.314673 210.371019 L 55.116662 211.076494 L 55.225661 211.449417 L 54.892224 211.849833 L 53.864299 211.300077 L 53.466033 210.626554 L 52.711019 209.990165 L 52.283671 209.894341 L 51.944798 209.585336 L 51.607156 209.644656 L 50.997851 210.183838 L 51.290239 211.410507 L 51.554877 211.651386 L 51.447637 212.168854 L 51.613973 212.217945 L 51.120429 212.121369 L 50.826260 211.846627 L 50.788812 211.541364 L 50.963361 211.419721 L 50.899186 211.065422 L 50.672556 210.982260 L 50.624254 210.513110 L 49.637664 209.395597 L 49.403250 208.699644 L 49.567927 207.678914 L 50.099855 207.494505 L 50.415929 208.094715 L 50.223706 208.177715 L 50.228949 208.498403 L 50.516753 208.875996 L 50.775756 208.642772 L 50.475380 207.754131 L 50.953257 207.604623 L 51.260334 206.970293 L 51.487426 206.981068 L 51.590335 207.296061 L 52.170351 207.252413 L 52.256438 207.419255 L 52.599411 207.233722 L 52.779337 207.360764 L 53.357648 207.213218 L 53.217084 206.368014 L 53.888574 205.926749 L 54.491074 206.010857 L 54.657311 205.791847 L 54.760681 206.204295 L 54.892539 206.138064 L 55.364368 204.754514 L 55.792330 204.130959 L 56.486557 204.053536 L 56.917069 204.478881 L 57.315730 203.674686 L 57.170669 203.452598 L 57.302427 202.929785 L 58.128501 202.392770 Z ' fill='#1F1726' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_3c9aaa3e0504a623_e121' d='M 56.071371 189.144165 L 56.300717 189.880798 L 57.278459 189.480872 L 57.583117 189.758868 L 57.639575 190.042417 L 57.396485 190.051102 L 57.217219 190.278250 L 56.936090 190.112562 L 56.946204 190.983932 L 56.645505 191.002458 L 56.645340 191.678237 L 56.970063 191.994768 L 57.477405 192.304045 L 57.710928 192.192890 L 57.981965 192.455747 L 58.203813 192.390957 L 58.629542 192.977624 L 58.901877 192.910722 L 59.083210 193.156175 L 59.263795 193.020117 L 59.327453 193.393437 L 59.713086 193.139023 L 60.004770 193.491453 L 60.481437 193.508385 L 60.819167 193.308527 L 61.118977 193.442098 L 60.979137 193.711806 L 60.603136 193.865751 L 60.727923 194.217069 L 60.482592 194.311996 L 60.719117 194.471273 L 60.130481 194.529896 L 59.903093 194.932911 L 60.201627 195.327900 L 61.563507 195.774927 L 61.489602 195.914656 L 61.271338 196.010099 L 60.883991 195.865829 L 60.405168 196.483809 L 59.909953 196.622670 L 59.702751 196.926724 L 59.332301 197.069389 L 59.420026 196.955815 L 58.780739 196.533581 L 59.086255 196.281213 L 58.568930 196.229660 L 58.509691 195.981205 L 58.237401 195.969265 L 58.224351 195.662694 L 57.937690 195.630546 L 58.014289 195.408666 L 57.492357 195.400046 L 57.209469 195.651271 L 57.038229 195.351505 L 56.788400 195.590615 L 56.158558 195.363545 L 56.259058 196.121826 L 55.856219 196.195489 L 55.622310 195.915920 L 55.291640 196.015574 L 55.074113 195.606744 L 54.915737 195.623235 L 54.742903 195.061811 L 54.908502 194.900269 L 54.117919 194.702114 L 54.145604 194.264818 L 53.812052 194.112039 L 53.469166 193.145499 L 53.494640 192.236153 L 53.748393 192.163920 L 53.607994 191.953924 L 53.780168 191.665483 L 52.915647 191.609147 L 52.943375 191.363738 L 52.472810 191.017246 L 52.786759 190.453832 L 53.325544 190.271653 L 53.387059 189.963367 L 53.797705 189.973646 L 54.254043 189.532051 L 54.745981 189.460478 L 54.894408 189.240422 L 55.095333 189.373840 L 55.866763 188.983865 L 56.071371 189.144165 Z ' fill='#251B31' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 19.65'/>\n <path id='svg_3c9aaa3e0504a623_e122' d='M 63.049274 174.735540 L 63.487306 174.759727 L 64.148725 175.219463 L 65.109658 175.529553 L 66.295691 175.022079 L 66.442391 175.198452 L 66.665700 175.104746 L 66.995460 175.329134 L 67.174483 175.213163 L 68.091734 175.332234 L 68.502544 175.550112 L 69.577885 175.502924 L 69.909414 175.183005 L 70.596208 175.492149 L 71.081342 175.129485 L 71.830838 175.160423 L 71.944730 175.399169 L 72.244507 175.327309 L 72.656317 175.960087 L 73.048382 176.197030 L 73.141440 177.237430 L 73.408123 177.558558 L 73.235003 177.567343 L 73.210870 177.798074 L 73.364882 177.963068 L 72.797773 178.732630 L 72.787724 178.972234 L 72.025430 179.781705 L 71.579822 180.753291 L 71.368870 181.518575 L 71.561868 181.533550 L 71.735241 182.186756 L 71.592773 182.447283 L 71.369145 182.446832 L 70.489034 184.108158 L 70.540301 184.830311 L 70.297344 185.399178 L 69.754061 186.171367 L 68.973878 186.731937 L 68.747865 186.795131 L 68.293461 186.330624 L 67.715985 186.347775 L 67.358158 185.624424 L 67.426400 185.093400 L 67.258459 184.732559 L 66.740452 184.179810 L 66.343220 184.148750 L 66.287588 183.963603 L 65.893104 183.838705 L 65.477786 184.077945 L 64.995842 183.997850 L 64.613233 184.167496 L 64.348375 185.020341 L 63.261951 184.509810 L 63.252991 184.770271 L 62.674899 185.154088 L 62.277062 185.004564 L 62.033149 185.167557 L 61.556372 184.919026 L 61.399205 185.015272 L 61.262214 184.437521 L 60.645420 184.405583 L 60.406840 184.630640 L 60.209488 184.380405 L 59.921322 184.501949 L 59.817479 184.377216 L 60.177659 183.651028 L 60.130547 183.102621 L 60.302887 182.875035 L 60.193711 182.632991 L 60.426740 182.605779 L 60.838814 182.163965 L 61.084377 182.215748 L 61.642590 181.553933 L 62.202300 181.448332 L 62.364469 180.883323 L 62.141928 180.688280 L 62.249631 180.175583 L 61.960145 179.876389 L 62.697713 178.864070 L 62.527078 178.434019 L 62.146503 178.306263 L 61.943378 177.968072 L 60.897657 178.341973 L 60.631128 178.236502 L 60.720854 177.210175 L 60.516477 177.101989 L 60.594429 176.632105 L 60.272432 175.799237 L 61.132632 175.394980 L 61.811741 175.466334 L 62.040185 175.254844 L 62.036865 174.979728 L 63.049274 174.735540 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.59'/>\n <path id='svg_3c9aaa3e0504a623_e123' d='M 51.110000 171.628755 L 51.077605 171.509066 L 50.330913 171.209081 L 50.026562 170.588253 L 49.652650 170.509236 L 49.711833 170.274470 L 49.431671 169.959080 L 49.669702 169.608059 L 50.080117 170.104076 L 50.217449 169.946415 L 50.446410 170.160259 L 50.683947 169.710363 L 50.466585 169.486679 L 50.731718 169.482721 L 50.498798 169.277453 L 50.885751 169.168465 L 50.444761 169.053221 L 50.651678 168.917438 L 50.435163 168.973169 L 50.492971 168.801116 L 49.881511 168.044528 L 50.084910 167.688195 L 50.501383 168.188942 L 50.933303 167.915012 L 50.697195 167.805288 L 50.818178 167.677289 L 50.939899 167.920180 L 51.334877 167.904678 L 51.465657 168.146337 L 51.439050 167.823428 L 51.712319 167.945083 L 51.644208 167.739815 L 51.806652 167.706886 L 52.129670 168.011214 L 52.453515 167.922654 L 52.894570 168.438373 L 52.531246 167.976417 L 52.998292 167.928426 L 52.136873 167.877466 L 51.805992 167.559340 L 51.649045 167.605792 L 51.698631 167.085366 L 51.485117 167.100044 L 51.342298 166.695446 L 51.555559 166.679283 L 51.426736 166.562687 L 51.670374 165.954360 L 52.441750 166.428795 L 52.123129 166.100203 L 52.377707 166.019888 L 51.975583 166.039018 L 51.853269 165.931437 L 52.124338 165.940342 L 51.839195 165.765914 L 52.129176 165.491820 L 52.392586 165.547728 L 52.106418 165.428108 L 52.255459 165.355807 L 51.818966 165.014988 L 51.982784 164.540080 L 52.348792 164.343498 L 52.577093 163.973532 L 52.658837 163.384886 L 52.975644 163.586910 L 53.487560 163.548715 L 53.815900 163.798224 L 53.826949 164.215412 L 54.024521 164.433708 L 53.756552 164.699511 L 53.989394 164.505887 L 53.839263 164.845530 L 54.071138 164.411191 L 53.845146 164.170169 L 54.152773 163.996071 L 54.017045 163.751608 L 54.177345 163.702132 L 54.362449 164.160945 L 54.881819 164.394843 L 54.189934 165.591233 L 54.777041 165.227237 L 54.940310 164.768931 L 55.094013 164.737432 L 55.068780 164.911277 L 55.356343 164.060060 L 55.873964 164.114482 L 56.144870 164.484030 L 56.267348 164.382308 L 56.358603 164.771405 L 56.572226 164.575318 L 56.450132 164.994099 L 56.341698 165.043127 L 56.353897 165.137027 L 56.768973 164.641559 L 57.119313 164.561244 L 57.450578 164.787896 L 57.517920 164.652499 L 57.682651 164.722985 L 57.687840 164.492858 L 57.929499 164.627156 L 58.258401 164.287866 L 58.599890 164.488241 L 58.956937 163.916196 L 59.035845 164.386597 L 59.486632 164.273617 L 59.618852 164.450299 L 60.472411 164.394568 L 61.301134 163.710995 L 62.050740 163.734347 L 61.953724 163.909863 L 62.109649 164.041512 L 62.534565 163.871294 L 63.099705 164.092482 L 63.219238 163.842643 L 62.833418 163.534500 L 63.074418 163.152516 L 63.500170 163.511609 L 64.273392 163.319414 L 64.445039 163.591429 L 65.321115 163.548484 L 65.190489 164.122541 L 65.001614 164.175854 L 65.036247 164.513485 L 64.623348 165.047587 L 64.679991 165.539064 L 65.141288 165.641214 L 64.730852 166.872974 L 63.986193 167.670638 L 62.884422 168.138696 L 62.101041 169.263380 L 60.772990 170.339106 L 60.153988 170.636739 L 59.882643 171.269242 L 58.968492 171.663891 L 58.734199 172.773996 L 58.766568 172.995140 L 58.801420 172.861337 L 59.069852 172.980902 L 58.074638 173.119851 L 57.427259 172.795139 L 56.961960 172.944214 L 56.618579 172.681862 L 56.912979 172.964696 L 57.576069 172.919652 L 57.798203 173.268838 L 57.910930 173.151163 L 58.599341 173.312002 L 58.489835 173.394516 L 59.190076 173.055060 L 59.709293 173.417055 L 60.025989 173.028013 L 60.301084 172.953537 L 58.920655 175.025003 L 58.516618 175.016340 L 58.481095 174.734089 L 58.325192 174.686702 L 57.690028 175.095237 L 56.949547 175.155288 L 56.061432 176.171479 L 57.330276 175.218463 L 57.718954 175.199761 L 57.974566 175.394353 L 58.502930 175.139478 L 58.786523 175.232634 L 58.055980 176.068152 L 58.112141 176.478765 L 57.605678 176.549833 L 57.136377 177.348233 L 56.071360 177.326013 L 56.664581 177.382998 L 56.216169 177.499121 L 56.809686 177.536987 L 57.219286 177.363405 L 57.518733 177.463467 L 58.371655 176.689321 L 58.199448 176.373393 L 58.530889 176.127742 L 59.565231 176.318970 L 60.270507 175.815234 L 60.594429 176.632105 L 60.516477 177.101989 L 60.720854 177.210175 L 60.631128 178.236502 L 60.897657 178.341973 L 61.942774 177.967907 L 62.081635 178.253764 L 62.582655 178.514939 L 62.656318 179.040752 L 61.946347 179.967589 L 62.249631 180.175583 L 62.141928 180.688280 L 62.364469 180.883323 L 62.303559 181.237094 L 62.200926 181.449376 L 61.624427 181.567875 L 61.061838 182.231416 L 60.838814 182.163965 L 60.426740 182.605779 L 60.193711 182.632991 L 60.302887 182.875035 L 60.130547 183.102621 L 60.177659 183.651028 L 59.802416 184.342034 L 59.175343 184.485787 L 58.809391 184.177171 L 58.678337 184.759221 L 58.305402 184.877247 L 58.230585 184.719069 L 57.714502 184.786158 L 57.299019 184.565222 L 57.116070 185.064758 L 56.407638 185.274699 L 56.218203 185.604700 L 55.928222 185.492721 L 55.449466 186.191422 L 54.935197 185.787922 L 54.743837 186.183781 L 54.448689 186.325664 L 54.403392 187.141074 L 53.953387 187.349749 L 53.550437 187.311323 L 53.548074 187.730984 L 53.892532 187.775512 L 54.131058 187.598281 L 54.078834 187.986167 L 54.564297 188.623135 L 54.298780 188.564643 L 53.634381 188.851491 L 53.913366 189.252956 L 53.672257 189.595490 L 53.984446 189.785365 L 53.797705 189.973646 L 53.385135 189.964686 L 53.325544 190.271653 L 52.786759 190.453832 L 52.472480 191.019060 L 52.943375 191.363738 L 52.915647 191.609147 L 53.780168 191.665483 L 53.607994 191.953924 L 53.748393 192.163920 L 53.494640 192.236153 L 53.468891 193.140981 L 53.812052 194.112039 L 54.153124 194.298505 L 53.900558 195.051190 L 54.027863 195.370921 L 53.619813 195.569472 L 53.911937 195.769187 L 53.889883 196.380295 L 53.497279 196.354007 L 53.411522 196.182636 L 53.701788 196.187617 L 53.310218 195.990716 L 53.196909 195.603654 L 52.727602 195.407842 L 52.479137 194.597385 L 52.498158 195.136398 L 52.888249 195.715666 L 52.386738 195.758856 L 52.204498 195.381825 L 52.138353 194.830977 L 53.082982 193.085458 L 52.286353 194.326879 L 52.117937 194.205979 L 52.047498 193.468876 L 51.943567 193.519434 L 51.971053 194.163295 L 52.194833 194.488729 L 51.920984 194.927403 L 51.988520 195.735744 L 51.605887 195.649669 L 51.904602 195.945012 L 51.360923 197.212796 L 50.907641 197.072104 L 50.789604 196.078023 L 50.426950 195.395923 L 50.707090 196.732252 L 50.024990 196.273836 L 49.986509 195.932401 L 49.574435 196.728360 L 49.812961 197.540514 L 49.058517 197.214032 L 49.079368 196.933413 L 48.807512 196.643197 L 48.996068 195.929103 L 48.880680 195.268167 L 49.133939 195.262780 L 49.967908 193.872520 L 50.681956 193.558956 L 50.983602 192.947169 L 51.928654 192.257955 L 51.141044 192.632561 L 51.047086 192.485218 L 50.577025 193.384256 L 49.742772 193.863958 L 49.280606 194.628781 L 49.024569 194.600694 L 48.933784 195.127767 L 48.546777 195.410546 L 48.243083 195.111549 L 48.188356 195.712895 L 48.500215 196.962258 L 48.360695 197.043771 L 48.566622 197.066816 L 48.857262 197.509675 L 48.989636 198.156812 L 48.431609 198.439261 L 48.033113 198.937148 L 47.762538 199.717484 L 47.890034 200.552917 L 47.645501 200.600509 L 47.640499 201.103838 L 47.163117 202.246883 L 46.785121 202.332715 L 46.948701 202.485552 L 47.238484 202.318238 L 47.130298 202.437143 L 47.335236 203.158494 L 46.707350 203.783807 L 46.135404 203.743556 L 45.586887 203.945866 L 45.311914 203.732243 L 45.348141 203.006220 L 45.458032 202.625480 L 46.010641 202.073679 L 46.093515 200.477590 L 46.433300 199.778284 L 46.440337 199.166384 L 46.862801 198.834734 L 47.220563 198.164783 L 47.865392 197.741550 L 48.179560 197.133442 L 47.049488 198.259996 L 46.909033 198.222010 L 46.989921 197.814039 L 46.765115 197.904818 L 46.598988 197.746827 L 46.641537 197.155376 L 47.246620 196.183186 L 47.067739 196.175875 L 46.559462 196.674806 L 46.511416 196.279388 L 47.400158 195.051190 L 47.198464 195.122160 L 47.429147 194.818343 L 47.128704 195.014963 L 47.364316 194.676442 L 47.021360 195.002940 L 47.100393 195.105668 L 46.829378 195.503175 L 46.935090 195.140961 L 46.804640 195.319621 L 46.484260 196.118923 L 46.383165 196.056914 L 46.567379 195.743185 L 46.352601 195.895679 L 46.985500 194.653794 L 47.341283 194.188615 L 47.630659 194.177786 L 47.462168 193.929529 L 47.948455 193.069813 L 47.800859 193.043057 L 47.216330 193.722008 L 47.235296 193.377550 L 47.680431 192.668412 L 47.555672 192.419917 L 48.108820 192.210089 L 47.996008 192.046644 L 47.343702 192.247643 L 47.536655 191.247416 L 47.745991 191.057376 L 47.933474 191.175926 L 48.430383 190.941862 L 48.105458 190.924791 L 47.937781 191.117936 L 47.823612 190.935282 L 48.008430 190.502661 L 48.298882 190.307609 L 48.243245 190.013415 L 48.543314 189.793823 L 49.722091 189.821867 L 49.923424 190.090149 L 50.742110 189.490519 L 51.142154 188.596012 L 50.290254 189.808937 L 49.965785 189.973899 L 49.796513 189.755416 L 49.198818 189.633235 L 48.726757 189.762771 L 48.694499 189.327488 L 48.429026 189.562616 L 48.481975 189.404042 L 48.326062 189.481916 L 48.771043 188.821849 L 48.978894 189.139613 L 50.024847 188.539423 L 49.417784 188.707815 L 49.086817 188.989670 L 48.907210 188.742195 L 48.751990 188.790526 L 49.169605 188.010575 L 49.606022 187.622930 L 49.501815 187.408680 L 50.154209 187.036879 L 50.659880 187.181269 L 51.874125 186.776649 L 50.558444 187.081384 L 50.411755 186.893839 L 49.979957 186.852270 L 50.988275 185.254942 L 50.456854 184.995064 L 49.547937 184.906877 L 50.932587 185.283384 L 50.138289 186.159263 L 49.958056 186.479874 L 50.041526 186.627080 L 49.748918 186.865606 L 49.592850 186.753572 L 48.448541 187.839061 L 48.116946 187.799590 L 48.293991 187.935670 L 47.884786 188.561533 L 46.915960 189.201061 L 46.353865 188.735114 L 46.514605 188.392338 L 46.274100 188.737400 L 45.465507 188.458107 L 44.869495 187.592893 L 44.862898 187.215286 L 45.413779 187.214352 L 45.513609 187.158115 L 45.232974 187.129310 L 45.396517 187.002653 L 46.005338 187.601909 L 45.733939 187.167241 L 46.637524 186.674191 L 47.207864 187.016285 L 47.988750 186.919699 L 47.180983 186.971868 L 46.836359 186.587994 L 46.443196 186.502666 L 45.995279 187.002598 L 45.273873 186.787050 L 45.085043 186.952573 L 44.474649 186.649849 L 43.682252 186.683867 L 43.420142 186.377504 L 43.427948 186.167563 L 43.724141 186.075869 L 43.680878 185.870107 L 44.000928 185.780226 L 45.100929 185.764394 L 45.230885 185.577323 L 45.547032 185.984945 L 45.839102 185.957459 L 45.750761 185.602500 L 46.389433 185.548517 L 45.750431 185.537577 L 45.828767 185.284869 L 46.140242 185.429611 L 45.895998 185.304659 L 45.991540 185.026882 L 46.918159 184.949591 L 47.226796 184.634367 L 47.145701 184.523289 L 46.874785 184.878951 L 46.460050 184.725984 L 46.901832 184.439060 L 46.831742 184.309105 L 45.811835 184.518001 L 45.573859 184.307346 L 45.791770 184.124287 L 46.072075 184.217246 L 45.744109 183.944802 L 46.045985 183.705022 L 46.353162 182.849836 L 46.980300 182.811145 L 47.090003 183.151107 L 47.561228 183.434107 L 48.328041 183.175317 L 47.656936 183.301512 L 47.395321 183.123456 L 47.280978 182.596412 L 46.900084 182.690074 L 46.756979 182.436519 L 46.634610 182.482861 L 46.541541 182.211680 L 47.079228 181.590656 L 47.597268 181.499357 L 47.947630 181.625893 L 48.402683 182.114291 L 48.432269 181.906198 L 49.273239 181.820826 L 48.360859 181.862935 L 48.147335 181.463074 L 47.506916 181.318431 L 47.264871 181.012014 L 47.770366 180.474096 L 47.618213 180.146229 L 47.997282 179.906185 L 48.455742 179.786730 L 49.024873 180.492193 L 49.237904 180.385513 L 48.542269 179.757815 L 48.923910 179.299518 L 48.491529 179.767654 L 47.109914 179.577878 L 47.224136 179.179118 L 47.495503 179.066567 L 47.464982 178.875878 L 48.472398 178.785788 L 49.054141 178.143697 L 48.368841 178.720602 L 47.816850 178.589151 L 48.050473 178.336233 L 47.965948 178.142785 L 47.078888 178.743503 L 46.793822 178.781379 L 46.679028 178.438472 L 46.572821 178.567273 L 46.660007 177.711899 L 46.424791 177.582559 L 46.319562 177.192848 L 46.639503 175.898133 L 46.810468 175.839422 L 47.230897 176.378924 L 47.461782 176.438953 L 47.461728 176.240722 L 47.509553 176.535266 L 47.818940 176.819694 L 47.803383 176.390138 L 48.012388 176.701393 L 48.009584 176.564566 L 48.589028 176.613140 L 48.678095 176.449816 L 48.242724 176.280159 L 47.717625 176.386180 L 47.198739 175.405633 L 46.795405 175.189261 L 47.025191 174.485843 L 47.372067 174.369620 L 47.707884 174.614820 L 47.792443 174.479125 L 47.656188 174.134964 L 46.910737 173.835122 L 46.978134 172.505993 L 47.752203 172.381481 L 47.904048 173.288891 L 48.292660 173.723021 L 48.183848 173.415680 L 48.461844 173.411612 L 48.350580 173.275006 L 48.472751 172.865833 L 48.090230 172.610332 L 48.020470 172.184899 L 48.295552 171.770900 L 48.663571 171.871379 L 48.795462 172.489403 L 49.230581 172.691692 L 49.563880 172.022730 L 50.263406 172.651176 L 50.769726 172.843932 L 50.096686 172.082870 L 49.750644 171.992858 L 49.694165 171.758312 L 49.957098 171.672444 L 50.176428 171.991528 L 50.757994 171.978477 L 51.466734 172.536031 L 51.805057 173.136486 L 51.619701 172.580097 L 50.863553 171.890949 L 51.110000 171.628755 Z M 56.160006 165.125278 L 56.119307 165.143679 L 56.163608 165.364120 L 56.164934 165.361425 L 56.318528 165.395069 L 56.156194 165.127738 L 56.160006 165.125278 Z M 52.414529 165.556900 L 52.643467 165.869483 L 52.660607 165.659762 L 52.414529 165.556900 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e124' d='M 64.741990 162.880578 L 64.808023 163.200618 L 64.607196 163.289410 L 64.741990 162.880578 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e125' d='M 56.776175 164.316891 L 56.964016 164.344158 L 56.897004 164.501214 L 56.776175 164.316891 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e126' d='M 51.422888 166.217349 L 51.465547 166.422562 L 51.292108 166.441583 L 51.225701 166.302666 L 51.422888 166.217349 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e127' d='M 49.989313 196.366960 L 50.687409 196.928340 L 50.611196 197.150429 L 50.790945 197.203939 L 50.807701 197.460750 L 51.036277 197.414363 L 51.163835 198.323566 L 50.983987 198.497092 L 51.120979 198.813053 L 50.945066 198.908133 L 50.703846 198.415073 L 50.489288 198.198317 L 50.334661 198.255520 L 50.281437 197.374112 L 49.758318 196.838625 L 49.708567 196.644901 L 49.989313 196.366960 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e128' d='M 49.719727 170.625327 L 49.878763 170.826251 L 49.781022 170.920859 L 49.627318 170.846701 L 49.719727 170.625327 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e129' d='M 49.033559 171.272573 L 49.106893 171.405608 L 48.958522 171.436447 L 49.033559 171.272573 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e130' d='M 48.704273 188.511266 L 48.121894 189.255374 L 47.477120 189.677509 L 47.679035 189.277803 L 47.526596 189.302266 L 47.953358 189.123396 L 48.407916 188.527702 L 48.704273 188.511266 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e131' d='M 48.146818 172.701443 L 48.332383 173.039832 L 48.100179 172.878764 L 48.146818 172.701443 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e132' d='M 48.138440 190.148240 L 47.742363 190.769870 L 47.490203 190.663608 L 47.684092 190.330199 L 48.138440 190.148240 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e133' d='M 43.349943 174.132798 L 43.716665 174.161890 L 43.669553 174.353282 L 43.998124 174.598361 L 44.066642 175.025784 L 44.346376 175.100041 L 44.672957 175.690568 L 44.499584 177.615477 L 44.122857 177.851463 L 44.612168 178.048936 L 44.456629 178.340819 L 44.749864 178.942394 L 44.347299 179.214806 L 44.598107 179.047360 L 44.999945 179.072471 L 45.093179 179.332491 L 44.852508 179.611257 L 45.216702 179.402251 L 45.851581 179.743192 L 46.005064 180.030446 L 46.978244 179.667879 L 47.260033 179.720763 L 47.126834 179.847035 L 47.672933 179.943841 L 47.491028 180.510719 L 46.834875 180.950335 L 46.597977 180.877628 L 46.576691 181.195304 L 46.714815 181.256972 L 46.536484 181.527656 L 46.202372 181.667485 L 45.685124 182.441785 L 45.154033 182.691261 L 44.921279 182.334159 L 45.204476 182.029908 L 45.237372 181.426177 L 46.288172 180.726717 L 45.309825 180.897429 L 45.083129 180.191547 L 45.094684 180.659793 L 44.687151 181.376702 L 44.492273 181.206727 L 44.549279 180.611649 L 44.195806 180.438650 L 44.132532 180.732808 L 43.119112 180.845832 L 43.402111 180.400774 L 42.876243 180.435131 L 42.752940 180.022616 L 42.971511 179.997220 L 43.031211 179.790413 L 42.633045 179.937959 L 42.159841 179.154599 L 42.176882 178.927837 L 42.538492 178.771485 L 42.545363 178.599322 L 43.172656 179.154765 L 42.728158 178.612405 L 42.741615 178.411502 L 42.271270 178.694754 L 42.395739 178.372670 L 42.223224 178.238481 L 42.246719 177.897101 L 42.191461 177.787564 L 41.940775 178.206323 L 41.944601 177.788542 L 41.644582 177.944564 L 41.668496 178.557762 L 41.532988 178.626973 L 40.672392 178.101599 L 40.539799 177.512568 L 40.399233 177.368485 L 40.242616 177.448085 L 40.326834 177.000334 L 40.721362 177.126517 L 40.554696 176.701558 L 40.802513 176.348304 L 41.251352 177.244752 L 41.495651 177.223380 L 41.602385 177.407087 L 41.251583 176.515475 L 41.576912 176.449013 L 41.752339 176.644364 L 41.820802 176.498258 L 41.324763 175.921991 L 41.234432 176.000283 L 41.415952 175.223235 L 41.748920 175.486938 L 41.828983 175.987288 L 42.215968 176.195590 L 42.468072 176.635756 L 42.711051 176.422132 L 42.605009 176.901372 L 42.900157 176.306195 L 43.420505 177.242290 L 43.340191 176.905198 L 43.474268 176.902416 L 43.109053 176.478204 L 42.931381 175.897308 L 43.199735 175.607174 L 42.970851 175.618323 L 42.806099 174.907307 L 43.307119 174.582034 L 43.349943 174.132798 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e134' d='M 47.490973 191.284633 L 47.175321 192.060846 L 46.994659 191.652454 L 47.490973 191.284633 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e135' d='M 47.263222 192.490512 L 47.388779 192.778073 L 47.222322 192.920563 L 47.263222 192.490512 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e136' d='M 47.084836 191.988832 L 47.215560 192.280989 L 47.042451 193.030782 L 46.865989 192.605074 L 47.084836 191.988832 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e137' d='M 44.044631 187.083957 L 44.443952 187.321769 L 44.422798 187.556403 L 44.922653 188.078192 L 45.115421 188.800718 L 46.191751 188.944119 L 46.378712 189.270327 L 46.644505 189.294790 L 46.971691 189.752690 L 47.119127 189.712109 L 47.090113 190.128889 L 46.905043 189.942136 L 47.087034 190.212403 L 46.881272 190.595881 L 46.623725 190.491158 L 46.690022 190.206807 L 46.464745 190.243837 L 46.537749 190.422563 L 46.111194 190.767330 L 46.685185 190.574277 L 46.766269 190.745187 L 45.790450 191.426518 L 45.414439 191.270780 L 45.702725 191.012794 L 45.540446 190.868028 L 45.122369 191.262204 L 44.747621 191.231145 L 44.350554 191.563783 L 44.116590 191.434983 L 43.667299 191.630521 L 43.259842 191.520026 L 42.937901 191.564873 L 42.822920 191.822044 L 42.779876 191.703250 L 42.519417 191.775373 L 42.236913 191.442020 L 42.017187 191.482974 L 42.272579 190.773047 L 42.680047 190.830999 L 42.832706 190.931324 L 42.737921 191.083521 L 43.019590 191.164451 L 42.989696 190.862653 L 43.372646 191.014530 L 43.961568 190.919582 L 44.572236 190.668544 L 44.712966 190.408744 L 43.362146 190.695546 L 43.299313 190.360434 L 43.697259 190.048245 L 43.753826 189.742102 L 44.386891 189.606595 L 44.784342 189.136304 L 43.891367 189.337614 L 43.774606 188.985789 L 43.257248 188.601256 L 42.863875 188.650017 L 42.511611 188.463384 L 42.544814 188.256083 L 42.936977 187.972061 L 42.718252 187.988861 L 42.680816 187.613453 L 43.036170 187.670779 L 43.132471 187.534402 L 43.572472 187.922014 L 43.344995 187.662323 L 43.344665 187.308904 L 43.567084 187.455539 L 43.557793 187.213912 L 44.044631 187.083957 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e138' d='M 46.854005 173.993388 L 47.063341 174.004767 L 46.971867 174.125267 L 46.854005 173.993388 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e139' d='M 46.688384 192.821227 L 46.790677 193.229399 L 46.293615 193.294376 L 46.308457 193.070142 L 46.688384 192.821227 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e140' d='M 46.710307 192.381556 L 46.638018 192.806604 L 46.524115 192.681706 L 46.710307 192.381556 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e141' d='M 46.527634 193.439295 L 46.648463 193.916666 L 45.542723 195.583160 L 45.230280 196.556944 L 45.126217 196.683381 L 45.073663 196.550623 L 45.010335 196.829938 L 44.776702 196.817130 L 44.535031 197.715283 L 44.040124 197.646227 L 43.713091 197.188525 L 43.773176 196.324796 L 44.209659 195.788043 L 44.978341 195.713555 L 45.387392 195.488332 L 44.816150 195.669027 L 44.368035 195.486023 L 44.778241 194.735812 L 46.527634 193.439295 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e142' d='M 46.364530 178.619881 L 46.567874 178.911676 L 46.410322 178.896118 L 46.364530 178.619881 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e143' d='M 46.246174 179.501367 L 46.368762 179.658479 L 46.220721 179.740992 L 46.246174 179.501367 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e144' d='M 46.154589 198.568997 L 46.161362 199.117524 L 45.817608 199.582252 L 45.764394 199.198488 L 46.154589 198.568997 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e145' d='M 45.777257 175.803195 L 45.870821 175.998513 L 45.664124 176.693257 L 45.520535 176.291902 L 45.673393 176.256598 L 45.623389 175.958328 L 45.777257 175.803195 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e146' d='M 45.415428 178.953015 L 45.867083 179.207483 L 45.718546 179.604716 L 45.296248 179.409618 L 45.212469 179.165814 L 45.415428 178.953015 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e147' d='M 45.730970 183.992628 L 45.829152 184.090094 L 45.520206 184.172279 L 45.730970 183.992628 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e148' d='M 45.492390 176.614151 L 45.606776 177.077076 L 45.247871 177.667975 L 45.460120 178.554574 L 45.045902 178.901121 L 44.810234 178.630799 L 44.887966 177.749446 L 45.080425 177.282123 L 45.357322 177.368045 L 45.275577 176.933047 L 45.350890 176.846631 L 45.361444 177.057671 L 45.546318 176.908365 L 45.492390 176.614151 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e149' d='M 44.167165 183.539214 L 44.350333 183.807480 L 44.295966 184.239949 L 43.980478 184.442688 L 43.679481 184.251813 L 43.672796 184.029515 L 44.003347 183.899999 L 43.972232 183.644431 L 44.167165 183.539214 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e150' d='M 44.165890 189.373401 L 44.233462 189.466084 L 44.076845 189.443106 L 44.165890 189.373401 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e151' d='M 43.515575 195.857473 L 43.590063 197.412153 L 43.953102 198.023613 L 44.079781 199.011262 L 43.789778 199.328498 L 43.689288 199.247963 L 43.668783 199.503091 L 43.136264 199.678388 L 42.684334 199.592367 L 42.478022 200.051882 L 42.280175 200.199979 L 41.971560 200.143137 L 41.797462 200.017909 L 41.858591 199.672241 L 42.375993 199.125484 L 41.896577 198.325304 L 42.457077 197.821865 L 41.867123 197.685312 L 41.363892 198.579826 L 40.829196 198.975431 L 40.583227 198.684769 L 41.069789 198.003659 L 41.112228 197.636606 L 40.931918 197.486311 L 41.136196 197.297535 L 41.194852 196.768534 L 41.627926 196.726370 L 42.108980 196.347939 L 42.058262 197.015966 L 42.157092 196.453596 L 42.385228 196.525610 L 43.017688 195.956534 L 43.515575 195.857473 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e152' d='M 43.893292 180.817465 L 44.049853 180.997171 L 43.652402 181.237347 L 43.549823 181.001459 L 43.893292 180.817465 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e153' d='M 42.709402 188.940293 L 43.289088 188.948077 L 43.816055 189.337724 L 43.382113 189.453804 L 43.267099 189.310512 L 43.138078 189.486975 L 42.948037 189.214750 L 43.036489 189.076659 L 42.890591 189.277364 L 42.699287 189.169452 L 42.709402 188.940293 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e154' d='M 43.515410 193.465560 L 43.613580 193.623387 L 43.139694 194.337700 L 43.214050 194.547147 L 42.685653 195.064219 L 42.533379 194.782979 L 42.879926 194.719486 L 42.529092 194.595248 L 42.783065 194.058660 L 43.515410 193.465560 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e155' d='M 43.255225 184.672089 L 43.545425 184.731624 L 43.565380 184.951295 L 43.211796 184.939971 L 43.255225 184.672089 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e156' d='M 42.995600 182.053074 L 43.443945 182.376818 L 43.516235 182.586704 L 43.331406 182.685380 L 43.564280 182.780538 L 43.383311 183.305635 L 43.022031 183.605950 L 42.084473 182.652726 L 42.995600 182.053074 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e157' d='M 42.142535 178.508133 L 42.130695 178.690895 L 41.992779 178.670291 L 42.142535 178.508133 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e158' d='M 41.493518 181.840451 L 41.944348 181.897843 L 41.866892 182.042914 L 42.078371 182.199367 L 41.566356 182.000640 L 41.123113 182.114654 L 41.493518 181.840451 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e159' d='M 42.066442 190.703297 L 41.944733 191.103278 L 41.660723 191.191685 L 41.710275 190.895152 L 42.066442 190.703297 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e160' d='M 41.753153 186.503776 L 41.869366 186.723776 L 41.513143 187.356841 L 41.353788 187.308377 L 41.349269 187.544847 L 40.723572 187.873253 L 40.626930 187.704047 L 40.527320 187.895737 L 40.272521 187.773643 L 40.129153 188.017392 L 40.106119 187.670845 L 40.423311 187.614442 L 40.766725 187.084122 L 41.753153 186.503776 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e161' d='M 39.729832 188.025418 L 39.909593 188.412974 L 39.677586 188.422253 L 39.647153 188.583719 L 39.571951 188.405190 L 39.381650 188.437319 L 39.296088 188.851414 L 38.855394 188.827831 L 38.697304 189.338196 L 38.121004 189.203261 L 38.184552 188.764524 L 37.977635 188.573330 L 38.233368 188.371745 L 38.633569 188.252674 L 38.889571 188.428843 L 39.292470 188.160375 L 39.548491 188.254155 L 39.729832 188.025418 Z ' fill='#3B4E87' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15.95'/>\n <path id='svg_3c9aaa3e0504a623_e162' d='M 66.306081 195.089341 L 67.556378 195.228674 L 68.062807 195.880056 L 68.819901 196.061553 L 69.361172 196.600890 L 68.644978 197.358390 L 68.386882 197.019265 L 68.045392 197.021628 L 67.936106 197.257901 L 68.177337 197.641785 L 67.763327 198.033179 L 67.248289 197.809715 L 66.759473 198.029441 L 66.504950 197.829451 L 66.066653 198.150435 L 65.860121 198.069032 L 65.464813 198.442318 L 65.299862 198.124609 L 64.436880 198.836329 L 64.238485 199.110312 L 64.314951 199.295020 L 64.070983 199.434595 L 63.687879 198.310395 L 63.066667 198.622397 L 62.933666 198.363455 L 62.582930 198.397526 L 62.425598 198.013333 L 62.030070 198.170830 L 61.705116 198.649004 L 61.134204 198.456325 L 60.889389 198.150545 L 59.906589 198.522930 L 59.851726 198.257907 L 60.039216 198.083259 L 59.810794 197.527299 L 60.081501 197.251622 L 59.503969 197.341723 L 59.264630 197.089673 L 59.605009 197.000134 L 59.958593 196.596525 L 60.405168 196.483809 L 60.883991 195.865829 L 61.316801 196.011748 L 61.563507 195.774927 L 62.305725 195.957457 L 62.925651 195.862333 L 63.185177 196.110358 L 63.747096 195.986648 L 64.352915 196.509053 L 64.908238 196.483688 L 65.627114 196.139945 L 65.696963 195.730047 L 66.306081 195.089341 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e163' d='M 69.444422 154.402221 L 69.547694 154.563785 L 69.330145 154.569799 L 69.393034 154.875337 L 69.213372 154.977674 L 69.029314 154.847696 L 69.139457 154.496477 L 69.444422 154.402221 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e164' d='M 68.323597 155.287863 L 68.359131 155.464929 L 68.581638 155.499111 L 68.248758 155.984112 L 68.514792 155.948007 L 68.802948 155.635553 L 69.020155 155.675408 L 69.198069 155.384196 L 69.274898 155.738615 L 69.527871 155.838962 L 68.872421 155.826660 L 68.616646 156.268804 L 68.677698 156.502724 L 68.532394 156.260086 L 68.265898 156.535036 L 68.238521 156.278513 L 68.071053 156.430786 L 67.857616 156.343127 L 67.492708 156.955907 L 67.479504 156.500008 L 68.133568 155.924752 L 67.954863 155.441511 L 68.043743 155.669130 L 68.205208 155.628296 L 68.323597 155.287863 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e165' d='M 67.901837 157.222523 L 67.924221 157.458554 L 68.270186 157.482632 L 68.048910 157.542432 L 68.106741 157.793590 L 68.478961 157.726271 L 68.470913 158.293412 L 68.278146 158.195231 L 68.033705 158.339237 L 68.037311 158.026333 L 67.873020 157.903096 L 67.725407 157.983983 L 67.767473 158.299063 L 67.512169 158.259098 L 67.632537 157.879754 L 67.935095 157.756935 L 67.603181 157.335647 L 67.901837 157.222523 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e166' d='M 68.161131 157.289107 L 68.237477 157.391091 L 68.078309 157.436477 L 68.161131 157.289107 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e167' d='M 67.385500 160.371519 L 67.652239 160.415409 L 67.530002 160.544737 L 67.385500 160.371519 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e168' d='M 64.173990 157.280420 L 65.102851 157.665625 L 65.274795 157.893222 L 65.172689 157.979783 L 65.536816 158.307111 L 65.483438 158.724925 L 65.188697 158.592913 L 65.162167 158.902014 L 64.763121 159.048780 L 64.880179 159.138560 L 65.495499 159.055816 L 65.789701 159.377713 L 65.983612 158.997434 L 66.186031 159.082423 L 66.085904 159.289141 L 66.247568 159.294661 L 66.048985 159.613007 L 66.253637 159.679161 L 66.435860 159.372898 L 66.639160 159.432433 L 66.782463 159.279335 L 66.854840 159.646386 L 66.522629 159.756167 L 66.610893 160.103263 L 66.813742 160.183677 L 66.915056 160.106056 L 66.721817 159.877744 L 67.380795 159.544138 L 67.346174 160.198377 L 66.885030 160.250184 L 66.575128 160.771807 L 66.433254 160.531017 L 66.172508 160.477627 L 66.154900 160.529206 L 65.921273 160.483421 L 65.722535 159.688561 L 64.311192 160.288004 L 64.003608 159.851698 L 63.952429 159.372766 L 63.648332 159.780684 L 63.262809 159.571272 L 63.227594 158.959988 L 63.431443 158.478746 L 63.304962 157.878940 L 63.554735 157.564872 L 63.414072 157.477762 L 64.173990 157.280420 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e169' d='M 66.142397 160.565831 L 66.064927 160.792763 L 66.243533 160.736207 L 66.226249 160.970709 L 66.426767 160.994633 L 66.110378 161.152933 L 66.283674 161.412315 L 65.946933 161.713048 L 65.991649 162.463391 L 65.637933 162.405890 L 65.625839 161.807436 L 65.358650 161.552496 L 65.605609 161.498128 L 65.475863 161.319280 L 65.272904 161.395538 L 65.409808 161.227475 L 65.781851 161.311287 L 66.127970 161.117541 L 65.575012 160.988257 L 66.059111 160.954075 L 65.996365 160.692845 L 66.142397 160.565831 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e170' d='M 67.218868 156.184113 L 67.321370 156.408941 L 67.170448 156.349702 L 67.218868 156.184113 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e171' d='M 67.094706 156.132043 L 67.073103 156.368283 L 67.254534 156.479108 L 67.065824 156.867071 L 67.215251 157.391762 L 66.885470 157.545432 L 66.654222 156.868775 L 66.957649 156.866774 L 66.887625 156.325074 L 67.094706 156.132043 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e172' d='M 66.793204 158.128010 L 66.663194 158.626150 L 66.772007 158.858519 L 66.636576 158.979657 L 65.961062 158.821908 L 66.165252 158.240991 L 66.454969 158.502451 L 66.793204 158.128010 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e173' d='M 65.877713 154.775418 L 66.033901 154.924592 L 65.671015 155.300913 L 66.199654 155.462576 L 66.340757 155.935153 L 66.491283 155.913131 L 66.606396 156.157364 L 66.472263 156.127337 L 66.313733 156.411491 L 66.361812 156.069330 L 66.122780 155.801405 L 65.943295 155.712536 L 65.687947 156.038293 L 65.156779 155.145561 L 65.556970 155.175960 L 65.877713 154.775418 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e174' d='M 66.365595 154.467528 L 66.374972 155.103166 L 66.187208 155.250580 L 66.365595 154.467528 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e175' d='M 66.051151 157.104806 L 66.066191 157.695200 L 65.908629 157.289382 L 66.051151 157.104806 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e176' d='M 65.787283 158.072389 L 65.893907 158.230633 L 65.713235 158.311465 L 65.596242 158.128109 L 65.787283 158.072389 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e177' d='M 65.119256 156.726770 L 65.382564 157.008736 L 65.871292 156.986592 L 65.707825 157.206548 L 65.793054 157.533976 L 65.310648 157.645582 L 64.964826 157.398744 L 64.810694 157.047260 L 65.119256 156.726770 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e178' d='M 65.797892 157.627595 L 65.775200 157.838305 L 65.468057 157.797119 L 65.797892 157.627595 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e179' d='M 65.066592 161.001878 L 64.804549 161.215744 L 65.022207 161.229279 L 64.997062 161.455007 L 64.619774 161.421430 L 64.600534 161.206322 L 65.066592 161.001878 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e180' d='M 63.266503 159.964183 L 64.170594 160.653188 L 64.149660 161.117508 L 64.456968 161.363544 L 63.873654 161.767757 L 64.534797 161.534420 L 64.530785 161.776761 L 64.663027 161.787899 L 64.025576 161.801522 L 64.024443 161.962634 L 63.598109 161.875064 L 63.098518 160.778415 L 62.753532 160.705422 L 62.970761 160.089883 L 63.266503 159.964183 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e181' d='M 63.561728 159.874765 L 63.849664 160.105254 L 63.577099 160.074106 L 63.561728 159.874765 Z ' fill='#3C4275' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.72'/>\n <path id='svg_3c9aaa3e0504a623_e182' d='M 79.364414 141.641795 L 79.404137 141.792112 L 79.129407 141.904728 L 79.364414 141.641795 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e183' d='M 78.572314 136.576839 L 78.589323 137.075045 L 78.824166 136.587164 L 79.274589 136.894197 L 79.010347 137.008705 L 79.156123 137.371413 L 78.827156 137.297959 L 79.144469 137.779090 L 78.643669 138.331675 L 78.866022 138.556700 L 78.724094 138.679597 L 78.378866 138.488182 L 78.169805 138.742650 L 77.969980 138.567012 L 77.947441 138.131025 L 78.141450 138.150694 L 78.062333 137.835987 L 78.247371 137.363552 L 78.109555 137.249704 L 78.572314 136.576839 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e184' d='M 78.672859 139.175230 L 78.885163 139.235699 L 79.032566 139.591756 L 79.235504 139.394174 L 79.082845 139.966450 L 78.894189 139.726274 L 78.542486 139.680284 L 78.727612 139.963426 L 78.521409 140.044456 L 78.187781 139.472367 L 78.253528 139.212941 L 78.491505 139.335474 L 78.672859 139.175230 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e185' d='M 78.392378 138.615685 L 78.607002 138.711316 L 78.554228 138.854464 L 78.392378 138.615685 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e186' d='M 78.447801 142.180966 L 78.056639 142.884945 L 77.697029 142.851456 L 77.903034 142.424352 L 78.447801 142.180966 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e187' d='M 77.934358 139.353945 L 78.066291 139.454105 L 77.858880 139.638373 L 77.934358 139.353945 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e188' d='M 77.579014 137.955882 L 77.856098 138.115688 L 77.984052 139.117618 L 77.679702 139.082821 L 77.462473 138.784880 L 77.760589 139.392316 L 77.600233 139.597035 L 77.365072 139.530176 L 77.864542 139.843861 L 77.802258 140.231858 L 77.595671 140.215244 L 77.763129 140.423295 L 77.730573 140.852388 L 77.486221 140.957826 L 77.196482 140.757121 L 77.286725 141.107406 L 76.801064 141.299964 L 76.706215 141.496469 L 76.900048 141.547351 L 76.735350 141.675273 L 76.898949 141.815178 L 76.726059 141.681814 L 76.353675 142.029627 L 76.884765 141.884718 L 76.924621 142.336879 L 77.187005 141.696822 L 77.240493 141.867183 L 77.612108 141.433559 L 77.062932 142.269966 L 77.136100 142.428398 L 77.260228 142.128907 L 77.465496 142.197843 L 77.465001 142.586444 L 77.207235 142.726898 L 76.785023 142.661228 L 76.908129 143.012943 L 76.980363 142.818043 L 77.103733 143.014306 L 77.413052 142.959763 L 77.436250 143.218540 L 76.967125 143.519054 L 77.035423 143.710865 L 77.283647 143.572872 L 77.320918 143.783417 L 77.066505 143.780603 L 76.864646 144.037666 L 76.936209 143.775028 L 76.760692 143.834608 L 76.717330 143.672780 L 76.765035 143.960814 L 76.542835 144.144698 L 76.819513 144.112043 L 76.617665 144.504569 L 76.932757 144.220449 L 76.623854 144.850930 L 77.012522 144.454742 L 76.961771 144.927386 L 77.157067 145.134874 L 76.984288 145.138458 L 77.014391 145.383285 L 76.911119 145.231945 L 76.897574 145.507302 L 76.721893 145.377314 L 76.751677 145.656630 L 76.597500 145.735758 L 76.733349 146.375715 L 76.933031 146.546999 L 76.703774 146.410029 L 76.556359 146.553487 L 76.736999 147.299410 L 76.635960 147.025162 L 76.555402 147.195423 L 76.435211 147.007252 L 76.291446 147.081234 L 76.440367 147.520509 L 76.334072 147.941621 L 76.209878 147.920820 L 76.350740 148.091971 L 76.336139 148.366747 L 76.173596 148.391901 L 76.357853 148.489566 L 76.303210 148.775478 L 76.184425 148.491787 L 76.084199 148.742055 L 76.047851 148.237429 L 75.853314 148.402105 L 75.660746 148.336303 L 75.592634 148.036043 L 75.765567 147.950340 L 75.757333 147.630015 L 75.971923 147.624705 L 75.957191 147.353689 L 75.775309 147.346466 L 75.815439 147.208430 L 75.964447 147.314648 L 75.861011 146.984142 L 76.039232 146.813561 L 76.294052 145.773095 L 76.331917 145.223885 L 76.096018 145.344144 L 76.212890 144.566117 L 76.012075 145.005018 L 76.308927 144.070099 L 75.953364 144.962414 L 76.159171 143.887964 L 75.831820 144.514828 L 75.774110 143.970972 L 75.320125 143.853804 L 75.655468 144.075597 L 75.754199 144.601299 L 75.699722 144.409170 L 75.545743 144.527196 L 75.521918 144.314387 L 75.506987 144.781060 L 75.382145 144.961150 L 75.293199 144.687628 L 75.134108 145.186373 L 74.611209 144.646377 L 74.637760 144.479975 L 74.984583 144.474038 L 74.876177 144.424672 L 75.081258 144.276104 L 74.861114 144.348591 L 74.953369 144.153295 L 74.702606 143.956647 L 74.812959 144.172722 L 74.595156 144.527086 L 74.502891 144.185893 L 74.131078 144.447266 L 73.973142 144.295432 L 74.064023 144.176977 L 73.734187 144.108437 L 73.798659 143.582822 L 73.659083 143.453086 L 74.024926 143.210163 L 74.279614 143.225665 L 74.450634 143.461388 L 74.430459 143.277450 L 74.674933 143.392793 L 74.585481 143.234736 L 74.860839 143.067069 L 75.030540 143.615916 L 75.140211 143.438190 L 74.965727 143.222751 L 75.229321 143.336281 L 75.107391 143.168988 L 75.333219 142.945085 L 75.686429 143.473152 L 75.828137 143.243081 L 75.641670 143.018088 L 75.764644 142.746468 L 75.914181 142.841912 L 75.859306 142.567588 L 76.324440 142.666561 L 76.086013 142.441261 L 75.708473 142.455961 L 75.766843 142.142232 L 75.634359 142.365113 L 75.462723 142.275838 L 75.495279 141.844039 L 75.169841 141.883015 L 75.183913 141.535038 L 75.351459 141.454074 L 75.090295 141.442684 L 75.289186 141.206191 L 75.072758 141.233073 L 75.139122 140.975405 L 74.890964 141.440485 L 74.888677 141.052345 L 74.550508 140.978231 L 74.200014 141.191624 L 74.071323 141.018681 L 74.198090 140.744532 L 74.493644 140.808982 L 74.471249 140.397270 L 74.669040 140.168913 L 74.762933 140.470109 L 75.178251 140.797910 L 75.505778 140.697036 L 75.144553 140.718310 L 74.882884 140.395620 L 75.261699 139.950068 L 75.263294 139.368788 L 75.858196 139.624872 L 75.803290 139.284844 L 76.759868 139.187049 L 76.917969 138.906853 L 76.951887 139.348437 L 77.210478 139.541676 L 76.991082 139.271871 L 77.085965 138.055877 L 77.332627 138.023608 L 77.409039 138.292479 L 77.384246 137.991615 L 77.599948 138.096282 L 77.579014 137.955882 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e189' d='M 77.738490 145.049821 L 77.925892 145.095448 L 77.899615 145.332600 L 77.738490 145.049821 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e190' d='M 77.539049 144.580465 L 77.492652 144.961040 L 77.684177 144.912169 L 77.523657 145.693275 L 77.218779 145.486963 L 77.268727 145.126639 L 77.051310 144.839737 L 77.163366 144.698711 L 77.475391 144.855988 L 77.403597 144.677601 L 77.539049 144.580465 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e191' d='M 76.127573 145.778428 L 75.917798 146.477624 L 75.938578 146.010653 L 76.127573 145.778428 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e192' d='M 75.948015 145.778398 L 75.975739 145.807233 L 75.714564 146.469488 L 75.948015 145.778398 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e193' d='M 75.981355 145.679702 L 76.035989 145.517967 L 76.005611 145.682577 L 75.981355 145.679702 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e194' d='M 75.323819 142.195424 L 75.624914 142.468154 L 75.305073 142.753285 L 75.035213 142.394809 L 75.323819 142.195424 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e195' d='M 75.046921 142.797429 L 75.269451 142.971032 L 75.057202 143.170528 L 75.046921 142.797429 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e196' d='M 74.385931 144.413843 L 74.485212 144.625982 L 74.260429 144.544678 L 74.385931 144.413843 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e197' d='M 74.291048 152.450177 L 74.289179 152.821186 L 74.001948 152.956980 L 74.093972 152.468813 L 74.291048 152.450177 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e198' d='M 73.563321 142.745534 L 73.759057 142.926460 L 73.863087 142.783136 L 73.887978 143.053920 L 73.564806 143.073666 L 73.441282 142.862132 L 73.563321 142.745534 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e199' d='M 71.406362 145.059771 L 71.613168 145.282575 L 71.462268 145.649626 L 71.138040 145.355194 L 71.406362 145.059771 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 15'/>\n <path id='svg_3c9aaa3e0504a623_e200' d='M 47.793707 156.895865 L 47.861819 157.091568 L 47.682662 157.121253 L 47.793707 156.895865 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e201' d='M 41.481166 169.941781 L 40.954028 170.446028 L 41.155601 170.875342 L 40.998688 170.968048 L 41.237059 170.970939 L 41.429364 171.375977 L 41.170609 171.443649 L 41.452343 171.869137 L 40.568332 171.617759 L 40.722637 171.805478 L 40.493456 171.805423 L 40.537126 171.983182 L 40.731883 171.997585 L 40.941263 172.512261 L 40.546780 172.396555 L 40.562007 172.760957 L 40.142676 172.367243 L 40.296808 172.616313 L 40.203311 172.757659 L 40.102865 172.627824 L 40.118048 172.924005 L 39.956847 172.825275 L 40.004475 173.097059 L 39.684381 172.980880 L 39.825099 173.203376 L 39.571302 173.256634 L 39.504555 173.492147 L 39.307752 173.438461 L 39.299122 173.596320 L 38.359310 172.191551 L 38.683209 172.254659 L 38.694918 172.474439 L 39.076692 172.275901 L 39.302310 171.883319 L 39.514889 171.886233 L 39.619172 171.440405 L 40.487970 171.564907 L 40.171647 171.265152 L 40.297172 171.149402 L 39.881237 171.095826 L 39.968633 170.947906 L 39.830652 171.044218 L 39.345353 170.696571 L 39.368497 170.834442 L 39.185823 170.849559 L 38.827512 170.636321 L 38.787986 170.298954 L 38.627797 170.356895 L 38.847412 169.968239 L 39.048667 170.124966 L 39.219631 169.874181 L 40.012776 169.692716 L 39.149652 169.846640 L 39.012550 169.739608 L 39.289721 169.603496 L 39.044929 169.569963 L 39.264929 169.272341 L 39.029646 169.501082 L 38.864068 169.444846 L 38.604103 168.711236 L 38.925857 168.277777 L 38.870720 167.981750 L 39.279716 168.002001 L 39.137338 167.838930 L 39.445954 167.274526 L 39.422029 167.420776 L 39.732416 167.593093 L 39.848902 167.409155 L 40.163676 167.705293 L 40.138696 167.829882 L 39.803727 167.805211 L 40.238384 168.035513 L 40.365865 168.920461 L 40.268674 168.131219 L 40.369988 168.234788 L 40.328209 168.036227 L 40.450798 168.118906 L 40.511091 167.898422 L 41.168311 168.036019 L 41.245921 168.359631 L 41.356472 168.313179 L 41.430234 168.149690 L 41.125059 168.009236 L 41.248252 167.803022 L 40.833077 167.264302 L 40.788769 167.011648 L 41.070954 166.950167 L 40.755181 166.925616 L 40.913722 166.645531 L 41.223218 166.639978 L 41.940181 166.097662 L 42.009546 166.244912 L 42.619653 166.014686 L 42.817532 165.638873 L 44.273966 164.706691 L 44.580218 164.285315 L 45.051784 164.927307 L 44.947281 165.170561 L 45.093509 165.537612 L 44.770050 166.102181 L 45.075807 166.454116 L 44.599734 166.734839 L 44.252879 167.304432 L 44.009405 167.327311 L 43.879141 167.738451 L 44.180898 168.046166 L 45.049145 167.415883 L 45.185631 167.484709 L 45.040317 167.942411 L 44.448251 168.408843 L 44.155884 168.080842 L 43.781840 168.282955 L 43.507912 167.965719 L 43.604905 168.690841 L 43.242889 168.833725 L 43.585115 168.810791 L 43.570328 168.949982 L 42.819347 168.775630 L 43.229058 169.033155 L 42.926588 169.255761 L 41.865847 169.430354 L 43.138276 169.430003 L 43.368523 169.175479 L 43.360882 169.510153 L 43.485230 169.422801 L 43.537234 169.624055 L 43.481711 169.962137 L 43.089516 169.938873 L 43.574506 170.080328 L 43.350657 170.552488 L 43.041117 170.328475 L 42.954481 170.453977 L 42.897628 170.289334 L 42.167427 170.415727 L 42.788067 170.497406 L 42.935834 170.665676 L 42.757228 171.278071 L 42.437562 171.389995 L 42.272535 171.012279 L 42.288202 171.511154 L 42.087222 171.395602 L 42.042364 171.567227 L 41.672728 170.908985 L 41.865957 171.467507 L 41.694717 171.335518 L 41.573558 171.444253 L 41.278300 170.895846 L 41.241117 170.284496 L 41.481166 169.941781 Z M 41.547149 169.847578 L 41.597746 169.775341 L 42.097579 169.814470 L 41.443636 169.712847 L 41.547149 169.847578 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e202' d='M 41.199986 171.884958 L 41.541563 172.010031 L 41.585982 172.193914 L 41.259400 172.236969 L 41.199986 171.884958 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e203' d='M 40.315895 167.127915 L 40.579653 167.196356 L 40.642091 167.508369 L 40.775301 167.419270 L 40.960009 167.920126 L 40.423047 167.800956 L 40.527264 167.581296 L 40.315895 167.127915 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e204' d='M 39.251900 171.221834 L 39.383285 171.592350 L 39.197918 171.735333 L 38.974453 171.544633 L 38.759071 171.765623 L 38.717621 171.530395 L 39.251900 171.221834 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e205' d='M 38.563204 169.739168 L 38.710915 170.173210 L 38.394108 170.095226 L 38.287571 169.869453 L 38.563204 169.739168 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e206' d='M 38.651259 172.991886 L 38.659955 173.278469 L 38.517686 173.055995 L 38.651259 172.991886 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e207' d='M 36.466879 177.218728 L 36.725838 177.383317 L 36.591733 177.215321 L 36.201317 177.090587 L 36.189168 176.527349 L 36.716235 176.252761 L 36.782301 176.286331 L 36.697159 176.173875 L 37.110498 176.185970 L 36.691056 176.157988 L 36.854171 175.917583 L 36.690518 175.699946 L 36.680392 176.139573 L 36.436919 176.271562 L 36.462316 175.955194 L 36.227308 175.647787 L 36.373260 175.458627 L 36.211531 175.629867 L 36.020171 175.340644 L 36.259302 175.287102 L 36.742885 175.550101 L 36.251441 175.268862 L 35.782360 175.343097 L 35.423454 174.813348 L 35.641279 174.747282 L 35.827272 174.178920 L 36.130556 174.159833 L 36.421141 174.413158 L 36.165794 174.186814 L 36.613325 174.116691 L 36.598418 174.221298 L 36.827169 174.152478 L 37.037604 173.811979 L 37.104764 174.192805 L 37.179489 174.144892 L 37.285904 174.354679 L 37.205656 174.117296 L 37.370342 174.204131 L 37.403612 173.943912 L 37.738384 173.974191 L 37.886417 173.842065 L 37.829484 173.954753 L 38.078235 174.287216 L 37.851529 174.434543 L 38.189225 174.593359 L 38.410204 174.490680 L 38.053058 174.369620 L 38.302634 174.318770 L 38.646542 174.638381 L 38.366732 175.016043 L 38.165290 174.777044 L 38.299324 174.710362 L 38.082138 174.818307 L 37.957076 174.675102 L 37.989949 174.838482 L 37.757801 174.608971 L 37.975161 174.544268 L 37.617950 174.578076 L 37.811695 174.684009 L 37.722750 174.816514 L 38.034862 174.909945 L 37.831727 174.930605 L 38.030300 174.981157 L 37.814312 175.156498 L 38.346667 175.181730 L 38.218086 175.516018 L 37.296110 175.597302 L 38.058500 175.638442 L 38.083128 175.906874 L 37.840269 176.128315 L 37.469304 176.045789 L 37.641368 176.203011 L 37.267720 176.185639 L 37.125714 176.029276 L 37.200048 176.223845 L 37.524496 176.205155 L 37.558085 176.615305 L 37.148066 176.335759 L 36.952348 176.372735 L 37.209163 176.503227 L 37.144262 176.660273 L 37.269501 176.543775 L 37.567979 176.766151 L 37.341218 176.737674 L 37.442038 176.933761 L 37.238969 176.820573 L 37.223467 176.995825 L 37.137545 176.850589 L 37.056899 176.992638 L 37.531093 177.162173 L 37.298339 177.320659 L 37.548080 177.343747 L 37.253262 177.354522 L 37.327475 177.503498 L 36.784357 177.229206 L 37.115940 177.511304 L 36.910316 177.500567 L 36.922711 177.508445 L 36.695740 177.515218 L 37.036614 177.726137 L 36.828104 177.797326 L 37.233361 178.099181 L 36.990383 178.082568 L 37.059780 178.186213 L 37.333687 178.116937 L 37.063519 178.329310 L 37.266675 178.422090 L 37.295206 178.694644 L 37.478979 178.740052 L 37.035516 179.187144 L 36.904900 179.620053 L 36.706753 179.588909 L 36.934806 179.797175 L 37.000223 180.370593 L 36.829478 180.530124 L 36.492287 180.325999 L 36.685615 180.547935 L 36.437238 180.390252 L 36.290835 180.476922 L 36.374030 180.655285 L 36.966964 180.708400 L 36.982819 180.911348 L 37.177289 180.950994 L 37.046840 181.212169 L 36.714970 181.031364 L 36.077332 181.038862 L 35.830549 180.691315 L 35.851570 179.631333 L 35.649535 179.313152 L 35.879320 179.172993 L 35.820027 178.761447 L 36.100069 178.561753 L 35.977248 177.539274 L 36.466879 177.218728 Z M 37.274366 175.596128 L 37.319262 175.393638 L 37.005764 175.581634 L 37.274366 175.596128 Z M 36.692935 179.576290 L 36.776594 179.563926 L 36.687538 179.436939 L 36.384595 179.517848 L 36.304336 179.358097 L 36.363069 179.536670 L 36.639548 179.527534 L 36.692935 179.576290 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e208' d='M 37.900675 173.813844 L 37.598434 173.730948 L 37.823438 173.407929 L 38.082369 173.380003 L 38.317091 173.781249 L 37.998514 173.620190 L 37.900675 173.813844 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e209' d='M 37.720308 176.253036 L 37.881763 176.412126 L 37.705136 176.677821 L 37.548970 176.400847 L 37.752798 176.404045 L 37.613387 176.299543 L 37.720308 176.253036 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e210' d='M 37.686556 172.781461 L 37.876376 172.973371 L 37.568695 173.097555 L 37.420214 172.935989 L 37.686556 172.781461 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e211' d='M 37.598929 177.379149 L 37.594146 177.576006 L 37.383546 177.615917 L 37.481453 177.672594 L 37.286135 177.594697 L 37.598929 177.379149 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e212' d='M 37.238255 173.543272 L 37.277285 173.803622 L 37.145625 173.708520 L 37.238255 173.543272 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e213' d='M 37.122856 177.455276 L 37.260221 177.495010 L 37.148077 177.630639 L 37.122856 177.455276 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e214' d='M 36.452805 181.159891 L 36.775385 181.247461 L 36.578023 181.706494 L 36.452805 181.159891 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e215' d='M 36.342509 182.010580 L 36.361221 182.151211 L 36.176569 182.073369 L 36.342509 182.010580 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e216' d='M 36.154139 182.078977 L 36.284809 182.252086 L 36.072341 182.161545 L 36.154139 182.078977 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e217' d='M 35.942990 181.533374 L 36.051176 181.668771 L 35.870426 181.775199 L 35.942990 181.533374 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e218' d='M 35.536247 181.538816 L 35.722066 181.643803 L 35.646907 182.053370 L 35.874329 182.268302 L 35.631251 182.126110 L 35.775400 182.256132 L 35.612286 182.251976 L 35.942605 182.545969 L 35.675999 182.374147 L 35.764658 182.533644 L 35.502857 182.726312 L 35.521295 182.899113 L 35.205587 182.948533 L 35.070036 182.749565 L 35.063758 182.888449 L 34.882800 182.861688 L 34.818119 182.959825 L 35.198056 183.086130 L 34.962762 183.037160 L 34.841460 183.170557 L 35.035832 183.247969 L 34.724138 183.318335 L 34.761683 183.084756 L 34.524806 182.992622 L 34.630629 182.816434 L 34.878808 182.862315 L 34.678235 182.734305 L 35.030929 182.476769 L 35.101624 182.162854 L 34.964313 182.061330 L 35.415968 181.994154 L 35.536247 181.538816 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e219' d='M 34.868550 183.415141 L 35.104163 183.637560 L 34.809565 183.597155 L 34.868550 183.415141 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e220' d='M 34.705997 175.605734 L 34.806596 175.771477 L 35.037811 175.710457 L 34.885977 175.950686 L 34.845022 175.790332 L 34.467141 175.790001 L 34.705997 175.605734 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e221' d='M 34.491163 183.891698 L 34.668725 184.063102 L 34.336471 184.025172 L 34.491163 183.891698 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e222' d='M 33.971893 184.722499 L 34.182273 184.813919 L 33.852547 184.771535 L 33.971893 184.722499 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e223' d='M 34.144242 184.252275 L 34.132467 184.582100 L 33.830888 184.591829 L 33.899109 184.317461 L 34.144242 184.252275 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e224' d='M 28.698536 171.468441 L 29.024634 171.532814 L 29.108302 171.700206 L 28.940416 171.803665 L 29.076253 171.927463 L 28.709531 171.699381 L 28.698536 171.468441 Z ' fill='#3C487E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 16.32'/>\n <path id='svg_3c9aaa3e0504a623_e225' d='M 65.811064 190.365403 L 67.084031 190.473237 L 66.597854 190.509025 L 66.539029 190.630433 L 66.381427 190.447236 L 66.416737 191.671747 L 67.377431 192.023432 L 67.874570 192.499000 L 67.739348 192.742990 L 66.343166 193.677139 L 65.924329 193.628555 L 65.422330 193.297807 L 63.988393 194.480454 L 63.828719 195.126943 L 63.112283 195.179266 L 62.813419 195.451390 L 62.378102 195.542194 L 62.319743 195.785668 L 61.817052 195.699603 L 61.819020 195.511937 L 61.630783 195.439615 L 60.146643 195.121710 L 59.948951 194.867219 L 60.113792 194.546553 L 60.719117 194.471273 L 60.482713 194.310599 L 61.054252 194.125649 L 61.142714 193.885958 L 62.176606 194.160920 L 62.497624 194.076581 L 62.489806 193.849236 L 62.671205 193.748263 L 63.004537 193.783599 L 62.922012 193.601750 L 63.253200 193.475324 L 63.231816 193.182177 L 63.060015 193.118684 L 63.131897 193.011520 L 62.536961 192.927686 L 62.637352 192.739790 L 62.433888 192.570387 L 62.766517 192.323945 L 63.051044 192.338502 L 63.009770 192.028335 L 63.318870 191.714375 L 63.178822 191.579791 L 65.811064 190.365403 Z ' fill='#130B12' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 21.02'/>\n <path id='svg_3c9aaa3e0504a623_e226' d='M 66.011406 183.919295 L 66.740452 184.179810 L 67.258459 184.732559 L 67.426400 185.093400 L 67.358158 185.624424 L 67.715985 186.347775 L 68.293461 186.330624 L 68.747865 186.795131 L 69.023464 186.714662 L 68.900227 187.536920 L 68.518112 187.827109 L 68.476959 188.191984 L 68.628486 188.293123 L 68.233662 188.991814 L 67.093937 189.835709 L 66.924259 190.278756 L 66.378831 190.090497 L 64.875133 190.377684 L 65.010959 190.438659 L 64.548585 190.546625 L 64.561888 190.791034 L 64.392628 190.876846 L 64.518185 190.898835 L 64.336644 190.894064 L 64.460409 190.942263 L 63.259334 191.428694 L 63.540288 191.424637 L 63.178822 191.579791 L 63.318870 191.714375 L 63.009770 192.028335 L 63.051044 192.338502 L 62.766517 192.323945 L 62.433888 192.570387 L 62.637352 192.739790 L 62.536961 192.927686 L 63.131897 193.011520 L 63.253200 193.475324 L 62.922012 193.601750 L 63.004537 193.783599 L 62.489806 193.849236 L 62.497624 194.076581 L 61.335931 194.044466 L 61.176005 193.877449 L 61.054252 194.125649 L 60.650325 194.186394 L 60.603136 193.865751 L 60.980589 193.710584 L 61.109763 193.431841 L 60.819167 193.308527 L 60.481437 193.508385 L 60.004770 193.491453 L 59.713086 193.139023 L 59.327453 193.393437 L 59.263795 193.020117 L 59.083210 193.156175 L 58.901877 192.910722 L 58.629542 192.977624 L 58.203813 192.390957 L 57.981965 192.455747 L 57.710928 192.192890 L 57.477405 192.304045 L 56.970063 191.994768 L 56.645340 191.678237 L 56.645505 191.002458 L 56.946204 190.983932 L 56.936090 190.112562 L 57.203092 190.281383 L 57.639575 190.042417 L 57.278459 189.480872 L 56.300717 189.880798 L 56.094789 189.090291 L 55.869676 188.983700 L 55.616583 189.219752 L 55.003528 189.383296 L 54.896882 189.239817 L 54.745981 189.460478 L 54.416256 189.444260 L 54.023642 189.827749 L 53.695181 189.646669 L 53.908858 189.170222 L 53.632622 188.853525 L 54.298780 188.564643 L 54.565066 188.619452 L 54.078834 187.986167 L 54.131058 187.598281 L 53.892532 187.775512 L 53.548074 187.730984 L 53.550437 187.311323 L 53.953387 187.349749 L 54.403392 187.141074 L 54.448689 186.325664 L 54.743837 186.183781 L 54.935197 185.787922 L 55.449466 186.191422 L 55.928222 185.492721 L 56.218203 185.604700 L 56.407638 185.274699 L 57.116070 185.064758 L 57.299019 184.565222 L 57.549694 184.750370 L 58.513199 184.854709 L 58.890640 184.161064 L 59.168527 184.483918 L 59.662071 184.307951 L 59.919728 184.501839 L 60.209488 184.380405 L 60.406840 184.630640 L 60.645420 184.405583 L 61.262214 184.437521 L 61.399205 185.015272 L 61.556372 184.919026 L 62.033149 185.167557 L 62.277062 185.004564 L 62.660606 185.158487 L 63.252991 184.770271 L 63.261951 184.509810 L 64.350684 185.019956 L 64.613233 184.167496 L 66.011406 183.919295 Z ' fill='#382C57' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 18.1'/>\n <path id='svg_3c9aaa3e0504a623_e227' d='M 54.165691 194.730645 L 54.909459 194.901214 L 54.742903 195.061811 L 54.840270 195.507441 L 55.291640 196.015574 L 55.622310 195.915920 L 55.827370 196.180052 L 56.161658 196.211222 L 56.253990 195.780292 L 56.121176 195.378662 L 56.788400 195.590615 L 57.038229 195.351505 L 57.359972 196.014200 L 57.281317 196.304434 L 57.779326 196.182439 L 57.631856 196.427397 L 57.717173 196.679819 L 56.775086 196.778133 L 56.970646 197.145976 L 57.537864 197.156388 L 57.572804 197.647612 L 57.379817 197.663697 L 57.316676 197.862840 L 56.891485 197.885731 L 56.685415 197.617553 L 56.492593 197.686312 L 56.663865 198.154316 L 56.111853 198.521105 L 56.513900 199.091632 L 56.501807 199.482861 L 56.301761 199.657949 L 55.594978 199.380886 L 55.389502 199.060781 L 55.274158 199.171694 L 55.018250 198.900096 L 54.813235 198.923778 L 54.891483 198.701899 L 54.654782 198.549899 L 54.388143 198.761082 L 54.120470 198.274607 L 53.805301 198.531835 L 53.693466 198.349436 L 53.496972 198.542071 L 53.348358 197.996897 L 53.109558 197.970785 L 53.104060 197.778490 L 52.690886 197.529245 L 52.921397 197.416276 L 52.606998 196.878754 L 51.964500 197.057162 L 52.087913 196.243832 L 52.672503 195.906905 L 53.342311 196.170598 L 53.415897 196.383726 L 53.889883 196.380295 L 53.911937 195.769187 L 53.619813 195.569472 L 54.027863 195.370921 L 53.909134 195.003145 L 54.080252 194.588882 L 54.165691 194.730645 Z ' fill='#1E1625' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 20.18'/>\n <path id='svg_3c9aaa3e0504a623_e228' d='M 57.810000 195.370295 L 58.014289 195.408666 L 57.937690 195.630546 L 58.224351 195.662694 L 58.220316 195.942615 L 58.509691 195.981205 L 58.553878 196.221469 L 59.086255 196.281213 L 58.780739 196.533581 L 59.420884 196.956782 L 59.319185 197.210129 L 59.732612 197.357665 L 60.081501 197.251622 L 59.810794 197.527299 L 60.039216 198.083259 L 59.833806 198.486428 L 60.889389 198.150545 L 61.134204 198.456325 L 61.791489 198.716433 L 61.914683 199.227811 L 62.052873 199.396147 L 62.210282 199.328795 L 61.575887 200.138959 L 61.595271 200.538313 L 61.259365 200.592637 L 61.534273 201.195093 L 61.535317 201.753449 L 61.147650 202.649337 L 61.363308 203.032376 L 60.860749 203.355405 L 60.876635 204.048610 L 60.638659 204.078020 L 60.409149 204.489876 L 59.918189 204.089674 L 59.931030 203.599330 L 59.637663 203.448805 L 59.159511 202.586009 L 58.678281 202.385305 L 58.159560 202.436923 L 57.839180 202.200046 L 57.784536 201.959816 L 58.272309 201.182394 L 57.723957 200.734642 L 57.423971 201.029296 L 56.967369 200.952279 L 56.433915 201.210430 L 56.305279 201.061124 L 56.790633 200.553651 L 56.584771 200.424432 L 56.322101 199.689668 L 56.501807 199.482861 L 56.499794 199.021465 L 56.112391 198.517850 L 56.663865 198.154316 L 56.468010 197.925036 L 56.519266 197.655330 L 56.689681 197.620192 L 56.891485 197.885731 L 57.316676 197.862840 L 57.379817 197.663697 L 57.572804 197.647612 L 57.537864 197.156388 L 56.970646 197.145976 L 56.775086 196.778133 L 57.717173 196.679819 L 57.631856 196.427397 L 57.777622 196.178920 L 57.281317 196.304434 L 57.359972 196.014200 L 57.097270 195.645389 L 57.810000 195.370295 Z ' fill='#241A2F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2022&amp;lt;br/&amp;gt;Items per Head: 19.74'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c5)'>\n <path id='svg_3c9aaa3e0504a623_e229' d='M 109.086352 102.223454 L 109.765538 102.777138 L 109.961515 103.640318 L 109.779182 103.973573 L 110.238632 104.347595 L 109.925871 104.598908 L 110.243430 104.873955 L 110.183440 105.545943 L 109.957766 105.739622 L 108.966263 105.702997 L 108.314536 104.828825 L 108.425493 104.212231 L 108.117295 103.308558 L 108.352742 102.716833 L 109.086352 102.223454 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_3c9aaa3e0504a623_e230' d='M 111.334060 102.158168 L 111.203193 102.463058 L 111.122680 102.312939 L 111.334060 102.158168 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_3c9aaa3e0504a623_e231' d='M 111.601194 101.458730 L 111.595652 101.951020 L 111.280714 102.068211 L 111.418058 101.553723 L 111.601194 101.458730 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_3c9aaa3e0504a623_e232' d='M 112.371678 100.310077 L 112.682615 100.808404 L 112.452104 100.921373 L 112.865278 101.170618 L 112.870776 101.362913 L 113.109576 101.389025 L 113.258189 101.934199 L 113.454683 101.741564 L 113.566519 101.923963 L 113.881688 101.666735 L 114.149361 102.153210 L 114.416000 101.942027 L 114.652701 102.094027 L 114.574453 102.315906 L 114.779468 102.292224 L 115.035376 102.563822 L 115.150720 102.452909 L 115.547665 102.891426 L 116.083319 103.022062 L 116.345989 103.816560 L 116.551851 103.945779 L 116.066497 104.453252 L 116.186557 104.599754 L 116.728587 104.344407 L 117.185189 104.421424 L 117.485175 104.126770 L 118.033526 104.574522 L 118.031877 104.761538 L 117.545754 105.351944 L 117.809898 105.707287 L 117.589238 105.908322 L 117.687254 106.039542 L 117.063645 106.321913 L 116.931886 106.844726 L 117.076948 107.066814 L 116.844084 107.692567 L 116.638047 107.880024 L 116.247774 107.445664 L 115.558165 107.518689 L 115.125586 108.146642 L 114.653756 109.530192 L 114.521899 109.596423 L 114.421387 109.183975 L 114.252292 109.402985 L 113.649791 109.318877 L 112.939106 109.825670 L 112.942899 110.139727 L 113.164659 110.301787 L 113.118866 110.605346 L 112.540555 110.752892 L 112.360629 110.625850 L 112.017656 110.811383 L 111.931569 110.644541 L 111.351552 110.688189 L 111.291193 110.416680 L 111.095160 110.343016 L 110.714475 110.996751 L 110.236598 111.146259 L 110.177800 110.484549 L 110.652730 109.372882 L 111.605922 108.387432 L 111.805609 107.681092 L 111.741638 107.225213 L 112.262997 106.778975 L 112.498223 106.056191 L 113.187060 105.734669 L 113.400227 105.169663 L 112.979742 104.534705 L 113.178735 104.470397 L 113.036375 103.942535 L 112.511013 103.514034 L 112.077493 103.400668 L 111.958883 103.023438 L 111.538613 102.604909 L 111.561942 102.226491 L 111.927080 101.703391 L 111.720330 101.150719 L 111.734634 100.464594 L 112.371678 100.310077 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.38'/>\n <path id='svg_3c9aaa3e0504a623_e233' d='M 125.594942 110.219735 L 125.281168 109.416453 L 125.577141 108.653158 L 125.174467 108.643473 L 125.433828 108.329040 L 125.342353 108.073197 L 124.899384 107.984527 L 124.659373 108.240315 L 124.331297 108.205605 L 123.934175 107.219803 L 123.760022 107.117225 L 123.427933 107.270213 L 123.135203 106.906075 L 122.611161 107.310585 L 122.424705 107.234602 L 122.544468 106.679533 L 122.951540 106.249702 L 122.469155 106.054329 L 122.189895 106.443315 L 121.367669 106.533856 L 120.923710 106.138328 L 121.042396 105.467991 L 121.296919 105.137551 L 121.295491 104.587221 L 121.020583 103.984765 L 121.356488 103.930441 L 121.337105 103.531087 L 121.966288 102.792222 L 121.675901 102.619939 L 121.477505 102.002354 L 121.791288 101.562958 L 122.184837 101.405626 L 122.344148 101.789654 L 122.694884 101.755583 L 122.827884 102.014525 L 123.449097 101.702523 L 123.832201 102.826723 L 124.076169 102.687148 L 123.999702 102.502440 L 124.198098 102.228457 L 125.061080 101.516737 L 125.226031 101.834446 L 125.621339 101.461160 L 125.827871 101.542563 L 126.266168 101.221579 L 126.520691 101.421569 L 127.009507 101.201843 L 127.450882 101.426022 L 127.614700 101.220314 L 127.796220 101.300079 L 127.951737 100.925991 L 127.697324 100.650029 L 127.806609 100.413756 L 128.148100 100.411393 L 128.406196 100.750518 L 129.122389 99.993018 L 129.361587 100.174603 L 130.080342 100.163708 L 130.671287 100.358893 L 130.706931 100.666509 L 131.087561 100.893963 L 131.388097 101.651024 L 131.023254 101.878446 L 131.026124 102.257844 L 130.804870 102.542207 L 130.397754 102.785307 L 130.461534 102.942122 L 129.898724 103.599814 L 129.994970 103.736069 L 129.501008 103.660702 L 129.290408 103.841760 L 129.480393 103.882922 L 129.615098 104.477814 L 129.950255 104.781087 L 130.217696 105.765240 L 130.466404 105.850150 L 130.007668 106.337702 L 129.803797 106.281861 L 129.280414 106.582165 L 129.264747 107.083977 L 128.975162 107.302999 L 128.302957 107.230710 L 127.987228 107.616254 L 127.716455 107.677714 L 127.097529 108.379725 L 127.342948 108.539904 L 127.200811 108.825410 L 126.952973 108.849015 L 126.691084 109.438300 L 125.831004 109.855905 L 125.594942 110.219735 Z ' fill='#382C57' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.09'/>\n <path id='svg_3c9aaa3e0504a623_e234' d='M 117.889718 105.784898 L 118.920729 105.978137 L 119.398881 106.840933 L 119.692248 106.991458 L 119.679406 107.481802 L 120.138208 107.889315 L 120.316868 107.832616 L 120.399877 107.470148 L 120.637853 107.440738 L 120.610587 106.782606 L 120.825420 106.580472 L 121.123866 106.424570 L 122.189895 106.443315 L 122.469155 106.054329 L 122.951540 106.249702 L 122.544468 106.679533 L 122.412314 107.220693 L 122.611161 107.310585 L 123.135203 106.906075 L 123.427933 107.270213 L 123.760022 107.117225 L 123.934175 107.219803 L 124.331297 108.205605 L 124.659373 108.240315 L 124.899384 107.984527 L 125.342353 108.073197 L 125.433828 108.329040 L 125.174467 108.643473 L 125.577141 108.653158 L 125.281168 109.416453 L 125.601395 110.212489 L 124.883255 110.933114 L 124.235315 110.880857 L 124.408347 111.083101 L 124.273477 111.545256 L 123.535719 112.098255 L 122.514794 111.942686 L 121.996376 112.083960 L 121.659574 112.431205 L 121.332872 112.494368 L 121.395213 112.355032 L 121.201487 112.412570 L 121.283860 112.145780 L 121.097195 112.533497 L 120.695377 112.665685 L 120.096208 113.350457 L 119.677812 113.221876 L 119.267276 113.347709 L 119.355288 113.168278 L 119.215068 113.153952 L 117.628302 114.214560 L 117.137291 114.188122 L 116.894897 113.812937 L 116.816984 114.231218 L 116.576413 114.004558 L 116.396376 114.069559 L 115.748149 113.346042 L 115.209622 113.178231 L 115.309924 113.339422 L 114.772777 112.850526 L 115.075891 113.763147 L 114.877880 114.468622 L 114.986879 114.841545 L 114.653442 115.241961 L 113.625517 114.692205 L 113.227250 114.018682 L 112.472237 113.382293 L 112.044889 113.286469 L 111.706016 112.977464 L 111.368374 113.036784 L 110.759069 113.575966 L 111.051457 114.802635 L 111.316095 115.043514 L 111.208855 115.560982 L 111.375191 115.610073 L 110.881647 115.513497 L 110.587477 115.238755 L 110.550030 114.933492 L 110.724579 114.811849 L 110.660404 114.457550 L 110.433774 114.374388 L 110.385472 113.905238 L 109.398882 112.787725 L 109.164468 112.091772 L 109.329145 111.071042 L 109.861073 110.886633 L 110.177146 111.486843 L 109.984924 111.569843 L 109.990167 111.890531 L 110.277971 112.268124 L 110.536974 112.034900 L 110.236598 111.146259 L 110.714475 110.996751 L 111.021552 110.362421 L 111.248644 110.373196 L 111.351552 110.688189 L 111.931569 110.644541 L 112.017656 110.811383 L 112.360629 110.625850 L 112.540555 110.752892 L 113.118866 110.605346 L 112.978302 109.760142 L 113.649791 109.318877 L 114.252292 109.402985 L 114.418528 109.183975 L 114.521899 109.596423 L 114.653756 109.530192 L 115.125586 108.146642 L 115.553548 107.523087 L 116.247774 107.445664 L 116.678287 107.871009 L 117.076948 107.066814 L 116.931886 106.844726 L 117.063645 106.321913 L 117.889718 105.784898 Z ' fill='#302445' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.83'/>\n <path id='svg_3c9aaa3e0504a623_e235' d='M 115.832589 92.536293 L 116.061935 93.272926 L 117.039677 92.873000 L 117.344335 93.150996 L 117.400792 93.434545 L 117.157703 93.443230 L 116.978437 93.670378 L 116.697307 93.504690 L 116.707422 94.376061 L 116.406723 94.394586 L 116.406558 95.070365 L 116.731281 95.386896 L 117.238623 95.696173 L 117.472146 95.585018 L 117.743183 95.847875 L 117.965031 95.783085 L 118.390760 96.369752 L 118.663095 96.302850 L 118.844428 96.548303 L 119.025012 96.412245 L 119.088671 96.785565 L 119.474303 96.531151 L 119.765988 96.883581 L 120.242655 96.900513 L 120.580385 96.700655 L 120.880194 96.834226 L 120.740355 97.103934 L 120.364353 97.257879 L 120.489141 97.609197 L 120.243810 97.704124 L 120.480335 97.863401 L 119.891699 97.922024 L 119.664310 98.325039 L 119.962845 98.720028 L 121.324725 99.167055 L 121.250820 99.306784 L 121.032556 99.402227 L 120.645208 99.257957 L 120.166386 99.875937 L 119.671171 100.014798 L 119.463968 100.318852 L 119.093519 100.461517 L 119.181244 100.347943 L 118.541957 99.925709 L 118.847473 99.673341 L 118.330147 99.621788 L 118.270909 99.373333 L 117.998619 99.361393 L 117.985569 99.054822 L 117.698908 99.022674 L 117.775507 98.800794 L 117.253575 98.792174 L 116.970687 99.043399 L 116.799447 98.743633 L 116.549618 98.982743 L 115.919776 98.755673 L 116.020276 99.513954 L 115.617437 99.587617 L 115.383528 99.308048 L 115.052858 99.407702 L 114.835331 98.998872 L 114.676955 99.015363 L 114.504121 98.453939 L 114.669720 98.292397 L 113.879137 98.094242 L 113.906822 97.656946 L 113.573270 97.504167 L 113.230384 96.537627 L 113.255858 95.628281 L 113.509611 95.556048 L 113.369212 95.346052 L 113.541386 95.057611 L 112.676865 95.001275 L 112.704593 94.755866 L 112.234028 94.409374 L 112.547976 93.845960 L 113.086762 93.663781 L 113.148277 93.355495 L 113.558922 93.365774 L 114.015261 92.924179 L 114.507199 92.852606 L 114.655626 92.632550 L 114.856551 92.765968 L 115.627981 92.375993 L 115.832589 92.536293 Z ' fill='#35274E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.46'/>\n <path id='svg_3c9aaa3e0504a623_e236' d='M 122.810491 78.127668 L 123.248524 78.151855 L 123.909943 78.611591 L 124.870875 78.921681 L 126.056909 78.414207 L 126.203609 78.590580 L 126.426918 78.496874 L 126.756677 78.721262 L 126.935701 78.605291 L 127.852952 78.724362 L 128.263762 78.942240 L 129.339103 78.895052 L 129.670632 78.575133 L 130.357426 78.884277 L 130.842559 78.521613 L 131.592056 78.552551 L 131.705948 78.791297 L 132.005725 78.719437 L 132.417535 79.352215 L 132.809600 79.589158 L 132.902658 80.629558 L 133.169341 80.950686 L 132.996221 80.959471 L 132.972088 81.190202 L 133.126099 81.355196 L 132.558991 82.124758 L 132.548941 82.364362 L 131.786648 83.173833 L 131.341040 84.145419 L 131.130088 84.910703 L 131.323086 84.925678 L 131.496458 85.578884 L 131.353991 85.839411 L 131.130363 85.838960 L 130.250252 87.500286 L 130.301519 88.222439 L 130.058562 88.791306 L 129.515279 89.563496 L 128.735096 90.124065 L 128.509083 90.187259 L 128.054679 89.722752 L 127.477203 89.739903 L 127.119375 89.016552 L 127.187618 88.485528 L 127.019677 88.124687 L 126.501670 87.571938 L 126.104438 87.540878 L 126.048806 87.355731 L 125.654322 87.230833 L 125.239004 87.470073 L 124.757060 87.389978 L 124.374451 87.559624 L 124.109593 88.412469 L 123.023169 87.901938 L 123.014208 88.162399 L 122.436117 88.546216 L 122.038280 88.396692 L 121.794367 88.559685 L 121.317589 88.311154 L 121.160422 88.407400 L 121.023431 87.829649 L 120.406638 87.797711 L 120.168058 88.022768 L 119.970705 87.772533 L 119.682539 87.894077 L 119.578696 87.769344 L 119.938877 87.043156 L 119.891765 86.494749 L 120.064104 86.267163 L 119.954929 86.025119 L 120.187957 85.997907 L 120.600032 85.556093 L 120.845595 85.607876 L 121.403808 84.946061 L 121.963518 84.840460 L 122.125687 84.275451 L 121.903146 84.080408 L 122.010849 83.567711 L 121.721363 83.268517 L 122.458931 82.256198 L 122.288296 81.826147 L 121.907720 81.698391 L 121.704596 81.360200 L 120.658875 81.734101 L 120.392345 81.628630 L 120.482072 80.602303 L 120.277695 80.494117 L 120.355646 80.024233 L 120.033650 79.191365 L 120.893850 78.787108 L 121.572959 78.858462 L 121.801403 78.646972 L 121.798083 78.371856 L 122.810491 78.127668 Z ' fill='#3A6DA0' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.12'/>\n <path id='svg_3c9aaa3e0504a623_e237' d='M 110.871218 75.020883 L 110.838823 74.901194 L 110.092131 74.601209 L 109.787780 73.980381 L 109.413867 73.901364 L 109.473050 73.666598 L 109.192889 73.351208 L 109.430920 73.000187 L 109.841334 73.496204 L 109.978667 73.338543 L 110.207628 73.552387 L 110.445164 73.102491 L 110.227803 72.878807 L 110.492935 72.874849 L 110.260016 72.669582 L 110.646969 72.560593 L 110.205979 72.445349 L 110.412896 72.309566 L 110.196381 72.365297 L 110.254189 72.193244 L 109.642729 71.436656 L 109.846128 71.080323 L 110.262601 71.581070 L 110.694520 71.307140 L 110.458413 71.197416 L 110.579396 71.069417 L 110.701117 71.312309 L 111.096095 71.296806 L 111.226874 71.538465 L 111.200268 71.215556 L 111.473537 71.337211 L 111.405426 71.131943 L 111.567870 71.099014 L 111.890888 71.403342 L 112.214733 71.314782 L 112.655788 71.830501 L 112.292464 71.368545 L 112.759510 71.320554 L 111.898090 71.269594 L 111.567210 70.951468 L 111.410263 70.997920 L 111.459849 70.477494 L 111.246335 70.492172 L 111.103516 70.087574 L 111.316777 70.071411 L 111.187954 69.954815 L 111.431592 69.346488 L 112.202968 69.820923 L 111.884347 69.492331 L 112.138925 69.412016 L 111.736801 69.431146 L 111.614487 69.323565 L 111.885556 69.332470 L 111.600413 69.158042 L 111.890394 68.883948 L 112.153804 68.939856 L 111.867636 68.820236 L 112.016677 68.747935 L 111.580184 68.407116 L 111.744002 67.932209 L 112.110010 67.735626 L 112.338311 67.365660 L 112.420055 66.777014 L 112.736862 66.979038 L 113.248778 66.940843 L 113.577118 67.190352 L 113.588167 67.607540 L 113.785739 67.825836 L 113.517770 68.091639 L 113.750612 67.898015 L 113.600481 68.237658 L 113.832356 67.803319 L 113.606363 67.562297 L 113.913990 67.388199 L 113.778263 67.143736 L 113.938563 67.094260 L 114.123667 67.553073 L 114.643037 67.786971 L 113.951152 68.983361 L 114.538259 68.619365 L 114.701527 68.161059 L 114.855231 68.129560 L 114.829998 68.303405 L 115.117560 67.452188 L 115.635182 67.506610 L 115.906087 67.876158 L 116.028566 67.774436 L 116.119820 68.163533 L 116.333444 67.967446 L 116.211350 68.386227 L 116.102916 68.435255 L 116.115115 68.529155 L 116.530191 68.033687 L 116.880531 67.953372 L 117.211796 68.180024 L 117.279138 68.044627 L 117.443869 68.115113 L 117.449058 67.884986 L 117.690717 68.019284 L 118.019619 67.679994 L 118.361108 67.880369 L 118.718155 67.308324 L 118.797063 67.778725 L 119.247849 67.665745 L 119.380070 67.842427 L 120.233629 67.786696 L 121.062352 67.103123 L 121.811958 67.126475 L 121.714942 67.301991 L 121.870866 67.433640 L 122.295782 67.263422 L 122.860923 67.484610 L 122.980456 67.234771 L 122.594636 66.926628 L 122.835636 66.544644 L 123.261388 66.903737 L 124.034610 66.711542 L 124.206257 66.983557 L 125.082333 66.940612 L 124.951707 67.514669 L 124.762832 67.567982 L 124.797465 67.905613 L 124.384565 68.439715 L 124.441209 68.931192 L 124.902506 69.033342 L 124.492070 70.265102 L 123.747411 71.062766 L 122.645640 71.530824 L 121.862258 72.655508 L 120.534208 73.731234 L 119.915206 74.028867 L 119.643861 74.661370 L 118.729710 75.056019 L 118.495417 76.166124 L 118.527785 76.387268 L 118.562638 76.253465 L 118.831069 76.373030 L 117.835856 76.511979 L 117.188477 76.187267 L 116.723178 76.336342 L 116.379797 76.073990 L 116.674197 76.356824 L 117.337287 76.311780 L 117.559421 76.660966 L 117.672147 76.543291 L 118.360559 76.704130 L 118.251053 76.786644 L 118.951294 76.447188 L 119.470511 76.809183 L 119.787207 76.420141 L 120.062301 76.345665 L 118.681873 78.417131 L 118.277836 78.408468 L 118.242313 78.126217 L 118.086410 78.078830 L 117.451246 78.487365 L 116.710765 78.547416 L 115.822650 79.563607 L 117.091494 78.610591 L 117.480172 78.591889 L 117.735784 78.786481 L 118.264148 78.531606 L 118.547740 78.624762 L 117.817198 79.460280 L 117.873359 79.870893 L 117.366895 79.941961 L 116.897595 80.740361 L 115.832578 80.718141 L 116.425798 80.775126 L 115.977387 80.891249 L 116.570903 80.929115 L 116.980504 80.755533 L 117.279951 80.855595 L 118.132873 80.081449 L 117.960666 79.765521 L 118.292107 79.519870 L 119.326449 79.711098 L 120.031725 79.207362 L 120.355646 80.024233 L 120.277695 80.494117 L 120.482072 80.602303 L 120.392345 81.628630 L 120.658875 81.734101 L 121.703992 81.360035 L 121.842853 81.645892 L 122.343873 81.907067 L 122.417536 82.432880 L 121.707565 83.359717 L 122.010849 83.567711 L 121.903146 84.080408 L 122.125687 84.275451 L 122.064777 84.629222 L 121.962143 84.841504 L 121.385645 84.960003 L 120.823056 85.623544 L 120.600032 85.556093 L 120.187957 85.997907 L 119.954929 86.025119 L 120.064104 86.267163 L 119.891765 86.494749 L 119.938877 87.043156 L 119.563634 87.734162 L 118.936561 87.877915 L 118.570609 87.569299 L 118.439554 88.151349 L 118.066620 88.269375 L 117.991803 88.111197 L 117.475720 88.178286 L 117.060237 87.957350 L 116.877288 88.456886 L 116.168856 88.666827 L 115.979421 88.996828 L 115.689440 88.884849 L 115.210684 89.583550 L 114.696415 89.180050 L 114.505055 89.575909 L 114.209907 89.717792 L 114.164610 90.533202 L 113.714605 90.741877 L 113.311655 90.703451 L 113.309292 91.123112 L 113.653750 91.167640 L 113.892276 90.990409 L 113.840052 91.378295 L 114.325515 92.015263 L 114.059998 91.956771 L 113.395598 92.243619 L 113.674584 92.645084 L 113.433475 92.987618 L 113.745664 93.177493 L 113.558922 93.365774 L 113.146353 93.356814 L 113.086762 93.663781 L 112.547976 93.845960 L 112.233698 94.411188 L 112.704593 94.755866 L 112.676865 95.001275 L 113.541386 95.057611 L 113.369212 95.346052 L 113.509611 95.556048 L 113.255858 95.628281 L 113.230109 96.533109 L 113.573270 97.504167 L 113.914342 97.690633 L 113.661775 98.443318 L 113.789081 98.763049 L 113.381031 98.961600 L 113.673155 99.161315 L 113.651100 99.772423 L 113.258497 99.746135 L 113.172740 99.574765 L 113.463006 99.579745 L 113.071436 99.382844 L 112.958126 98.995782 L 112.488820 98.799970 L 112.240355 97.989513 L 112.259375 98.528526 L 112.649466 99.107794 L 112.147956 99.150984 L 111.965716 98.773953 L 111.899571 98.223105 L 112.844200 96.477586 L 112.047570 97.719007 L 111.879155 97.598107 L 111.808716 96.861004 L 111.704784 96.911562 L 111.732271 97.555423 L 111.956051 97.880857 L 111.682202 98.319531 L 111.749738 99.127872 L 111.367105 99.041797 L 111.665820 99.337140 L 111.122141 100.604924 L 110.668859 100.464232 L 110.550822 99.470151 L 110.188167 98.788051 L 110.468308 100.124380 L 109.786208 99.665964 L 109.747727 99.324529 L 109.335652 100.120488 L 109.574178 100.932642 L 108.819735 100.606160 L 108.840586 100.325541 L 108.568730 100.035325 L 108.757286 99.321231 L 108.641898 98.660295 L 108.895157 98.654908 L 109.729125 97.264648 L 110.443174 96.951084 L 110.744820 96.339297 L 111.689871 95.650083 L 110.902261 96.024689 L 110.808303 95.877346 L 110.338243 96.776384 L 109.503989 97.256086 L 109.041824 98.020909 L 108.785787 97.992822 L 108.695002 98.519895 L 108.307995 98.802674 L 108.004301 98.503677 L 107.949573 99.105023 L 108.261433 100.354386 L 108.121912 100.435899 L 108.327840 100.458944 L 108.618480 100.901803 L 108.750854 101.548940 L 108.192827 101.831389 L 107.794331 102.329276 L 107.523756 103.109612 L 107.651251 103.945045 L 107.406719 103.992637 L 107.401716 104.495966 L 106.924334 105.639011 L 106.546338 105.724843 L 106.709919 105.877680 L 106.999702 105.710366 L 106.891516 105.829271 L 107.096454 106.550622 L 106.468568 107.175935 L 105.896622 107.135684 L 105.348105 107.337994 L 105.073132 107.124371 L 105.109359 106.398348 L 105.219249 106.017608 L 105.771859 105.465807 L 105.854733 103.869718 L 106.194518 103.170412 L 106.201555 102.558512 L 106.624019 102.226862 L 106.981781 101.556911 L 107.626610 101.133678 L 107.940778 100.525570 L 106.810706 101.652124 L 106.670251 101.614138 L 106.751139 101.206167 L 106.526333 101.296946 L 106.360206 101.138955 L 106.402754 100.547504 L 107.007838 99.575314 L 106.828957 99.568003 L 106.320680 100.066934 L 106.272634 99.671516 L 107.161376 98.443318 L 106.959682 98.514288 L 107.190364 98.210471 L 106.889922 98.407091 L 107.125534 98.068570 L 106.782578 98.395068 L 106.861611 98.497796 L 106.590596 98.895303 L 106.696308 98.533089 L 106.565858 98.711750 L 106.245478 99.511051 L 106.144383 99.449042 L 106.328596 99.135313 L 106.113818 99.287807 L 106.746718 98.045922 L 107.102501 97.580743 L 107.391876 97.569914 L 107.223385 97.321657 L 107.709673 96.461941 L 107.562077 96.435185 L 106.977548 97.114136 L 106.996513 96.769678 L 107.441649 96.060540 L 107.316889 95.812045 L 107.870038 95.602217 L 107.757225 95.438772 L 107.104919 95.639771 L 107.297873 94.639544 L 107.507209 94.449504 L 107.694692 94.568054 L 108.191601 94.333990 L 107.866676 94.316919 L 107.698998 94.510064 L 107.584830 94.327410 L 107.769648 93.894789 L 108.060100 93.699737 L 108.004462 93.405543 L 108.304531 93.185951 L 109.483309 93.213995 L 109.684642 93.482277 L 110.503327 92.882647 L 110.903372 91.988140 L 110.051472 93.201065 L 109.727002 93.366027 L 109.557731 93.147544 L 108.960036 93.025363 L 108.487975 93.154899 L 108.455717 92.719616 L 108.190244 92.954744 L 108.243193 92.796170 L 108.087280 92.874044 L 108.532261 92.213977 L 108.740112 92.531741 L 109.786065 91.931551 L 109.179002 92.099943 L 108.848034 92.381798 L 108.668428 92.134323 L 108.513208 92.182654 L 108.930823 91.402703 L 109.367240 91.015058 L 109.263033 90.800808 L 109.915427 90.429007 L 110.421098 90.573397 L 111.635343 90.168777 L 110.319662 90.473512 L 110.172973 90.285967 L 109.741175 90.244398 L 110.749493 88.647070 L 110.218072 88.387192 L 109.309155 88.299005 L 110.693805 88.675512 L 109.899507 89.551391 L 109.719273 89.872002 L 109.802744 90.019208 L 109.510136 90.257734 L 109.354068 90.145700 L 108.209759 91.231189 L 107.878164 91.191718 L 108.055209 91.327798 L 107.646004 91.953661 L 106.677177 92.593189 L 106.115083 92.127242 L 106.275822 91.784466 L 106.035318 92.129528 L 105.226725 91.850235 L 104.630713 90.985021 L 104.624116 90.607414 L 105.174996 90.606480 L 105.274827 90.550243 L 104.994191 90.521438 L 105.157735 90.394781 L 105.766556 90.994037 L 105.495157 90.559369 L 106.398742 90.066319 L 106.969082 90.408413 L 107.749968 90.311827 L 106.942200 90.363996 L 106.597577 89.980122 L 106.204413 89.894794 L 105.756497 90.394726 L 105.035091 90.179178 L 104.846261 90.344701 L 104.235867 90.041977 L 103.443470 90.075995 L 103.181360 89.769632 L 103.189166 89.559691 L 103.485358 89.467997 L 103.442096 89.262235 L 103.762146 89.172354 L 104.862147 89.156522 L 104.992103 88.969451 L 105.308250 89.377073 L 105.600319 89.349587 L 105.511979 88.994628 L 106.150650 88.940645 L 105.511649 88.929705 L 105.589984 88.676997 L 105.901459 88.821739 L 105.657216 88.696787 L 105.752758 88.419010 L 106.679377 88.341719 L 106.988014 88.026495 L 106.906919 87.915417 L 106.636003 88.271079 L 106.221268 88.118112 L 106.663050 87.831188 L 106.592959 87.701233 L 105.573053 87.910129 L 105.335077 87.699474 L 105.552988 87.516415 L 105.833293 87.609374 L 105.505327 87.336930 L 105.807203 87.097150 L 106.114379 86.241964 L 106.741517 86.203273 L 106.851221 86.543235 L 107.322446 86.826235 L 108.089259 86.567445 L 107.418154 86.693640 L 107.156539 86.515584 L 107.042196 85.988540 L 106.661302 86.082202 L 106.518197 85.828647 L 106.395828 85.874989 L 106.302759 85.603808 L 106.840446 84.982784 L 107.358486 84.891485 L 107.708848 85.018021 L 108.163901 85.506419 L 108.193487 85.298326 L 109.034457 85.212954 L 108.122077 85.255063 L 107.908553 84.855202 L 107.268133 84.710559 L 107.026088 84.404142 L 107.531584 83.866224 L 107.379430 83.538357 L 107.758500 83.298313 L 108.216960 83.178858 L 108.786091 83.884321 L 108.999122 83.777641 L 108.303487 83.149943 L 108.685128 82.691646 L 108.252747 83.159782 L 106.871132 82.970006 L 106.985354 82.571246 L 107.256720 82.458695 L 107.226200 82.268006 L 108.233616 82.177916 L 108.815359 81.535825 L 108.130059 82.112730 L 107.578068 81.981279 L 107.811691 81.728361 L 107.727166 81.534913 L 106.840105 82.135631 L 106.555039 82.173507 L 106.440246 81.830600 L 106.334039 81.959401 L 106.421225 81.104027 L 106.186009 80.974687 L 106.080780 80.584976 L 106.400721 79.290261 L 106.571686 79.231550 L 106.992115 79.771052 L 107.223000 79.831081 L 107.222946 79.632850 L 107.270771 79.927394 L 107.580158 80.211822 L 107.564600 79.782266 L 107.773606 80.093521 L 107.770802 79.956694 L 108.350246 80.005268 L 108.439313 79.841944 L 108.003942 79.672287 L 107.478843 79.778308 L 106.959957 78.797761 L 106.556623 78.581389 L 106.786409 77.877971 L 107.133285 77.761748 L 107.469102 78.006948 L 107.553661 77.871253 L 107.417406 77.527092 L 106.671955 77.227250 L 106.739352 75.898121 L 107.513421 75.773609 L 107.665266 76.681019 L 108.053878 77.115149 L 107.945066 76.807808 L 108.223062 76.803740 L 108.111797 76.667134 L 108.233969 76.257961 L 107.851447 76.002460 L 107.781687 75.577027 L 108.056770 75.163028 L 108.424789 75.263507 L 108.556680 75.881531 L 108.991799 76.083820 L 109.325098 75.414858 L 110.024624 76.043304 L 110.530943 76.236060 L 109.857903 75.474998 L 109.511862 75.384986 L 109.455383 75.150440 L 109.718316 75.064572 L 109.937646 75.383656 L 110.519212 75.370605 L 111.227952 75.928159 L 111.566275 76.528614 L 111.380919 75.972225 L 110.624771 75.283077 L 110.871218 75.020883 Z M 115.921224 68.517406 L 115.880525 68.535807 L 115.924825 68.756248 L 115.926152 68.753553 L 116.079746 68.787197 L 115.917411 68.519866 L 115.921224 68.517406 Z M 112.175747 68.949028 L 112.404684 69.261611 L 112.421825 69.051890 L 112.175747 68.949028 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e238' d='M 124.503208 66.272706 L 124.569240 66.592746 L 124.368414 66.681538 L 124.503208 66.272706 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e239' d='M 116.537393 67.709019 L 116.725234 67.736286 L 116.658222 67.893342 L 116.537393 67.709019 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e240' d='M 111.184105 69.609477 L 111.226765 69.814690 L 111.053326 69.833711 L 110.986919 69.694794 L 111.184105 69.609477 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e241' d='M 109.750531 99.759088 L 110.448627 100.320468 L 110.372414 100.542557 L 110.552163 100.596068 L 110.568919 100.852878 L 110.797495 100.806491 L 110.925053 101.715694 L 110.745205 101.889220 L 110.882197 102.205181 L 110.706284 102.300261 L 110.465064 101.807201 L 110.250506 101.590445 L 110.095879 101.647648 L 110.042655 100.766240 L 109.519536 100.230753 L 109.469785 100.037029 L 109.750531 99.759088 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e242' d='M 109.480945 74.017455 L 109.639981 74.218379 L 109.542239 74.312987 L 109.388536 74.238829 L 109.480945 74.017455 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e243' d='M 108.794777 74.664701 L 108.868111 74.797736 L 108.719739 74.828575 L 108.794777 74.664701 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e244' d='M 108.465491 91.903394 L 107.883112 92.647502 L 107.238337 93.069637 L 107.440252 92.669931 L 107.287814 92.694394 L 107.714576 92.515524 L 108.169134 91.919830 L 108.465491 91.903394 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e245' d='M 107.908036 76.093571 L 108.093601 76.431960 L 107.861397 76.270892 L 107.908036 76.093571 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e246' d='M 107.899658 93.540368 L 107.503581 94.161998 L 107.251421 94.055736 L 107.445310 93.722327 L 107.899658 93.540368 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e247' d='M 103.111161 77.524926 L 103.477883 77.554018 L 103.430771 77.745410 L 103.759342 77.990489 L 103.827860 78.417912 L 104.107593 78.492169 L 104.434174 79.082696 L 104.260802 81.007605 L 103.884075 81.243591 L 104.373386 81.441064 L 104.217847 81.732947 L 104.511081 82.334522 L 104.108517 82.606934 L 104.359324 82.439488 L 104.761162 82.464599 L 104.854397 82.724619 L 104.613726 83.003385 L 104.977920 82.794379 L 105.612798 83.135320 L 105.766281 83.422574 L 106.739462 83.060007 L 107.021251 83.112891 L 106.888052 83.239163 L 107.434151 83.335969 L 107.252246 83.902847 L 106.596093 84.342463 L 106.359195 84.269756 L 106.337909 84.587432 L 106.476033 84.649100 L 106.297702 84.919784 L 105.963589 85.059613 L 105.446341 85.833913 L 104.915251 86.083389 L 104.682497 85.726287 L 104.965694 85.422036 L 104.998590 84.818305 L 106.049390 84.118845 L 105.071043 84.289557 L 104.844347 83.583675 L 104.855902 84.051921 L 104.448368 84.768830 L 104.253491 84.598855 L 104.310497 84.003777 L 103.957024 83.830778 L 103.893750 84.124936 L 102.880330 84.237960 L 103.163329 83.792902 L 102.637461 83.827260 L 102.514158 83.414744 L 102.732729 83.389348 L 102.792429 83.182541 L 102.394263 83.330087 L 101.921058 82.546727 L 101.938100 82.319965 L 102.299710 82.163613 L 102.306581 81.991450 L 102.933874 82.546893 L 102.489376 82.004533 L 102.502833 81.803630 L 102.032488 82.086882 L 102.156957 81.764798 L 101.984442 81.630609 L 102.007937 81.289229 L 101.952679 81.179692 L 101.701992 81.598451 L 101.705819 81.180670 L 101.405800 81.336692 L 101.429714 81.949890 L 101.294206 82.019101 L 100.433610 81.493727 L 100.301016 80.904696 L 100.160451 80.760613 L 100.003834 80.840213 L 100.088052 80.392462 L 100.482579 80.518645 L 100.315914 80.093686 L 100.563731 79.740432 L 101.012570 80.636880 L 101.256869 80.615508 L 101.363603 80.799215 L 101.012801 79.907603 L 101.338130 79.841141 L 101.513557 80.036492 L 101.582020 79.890386 L 101.085981 79.314119 L 100.995650 79.392411 L 101.177170 78.615363 L 101.510138 78.879066 L 101.590200 79.379416 L 101.977186 79.587718 L 102.229290 80.027884 L 102.472269 79.814260 L 102.366227 80.293500 L 102.661375 79.698323 L 103.181723 80.634418 L 103.101408 80.297326 L 103.235486 80.294544 L 102.870270 79.870332 L 102.692599 79.289436 L 102.960953 78.999302 L 102.732069 79.010451 L 102.567317 78.299435 L 103.068336 77.974162 L 103.111161 77.524926 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e248' d='M 107.252191 94.676761 L 106.936538 95.452974 L 106.755877 95.044582 L 107.252191 94.676761 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e249' d='M 107.024439 95.882640 L 107.149997 96.170201 L 106.983540 96.312691 L 107.024439 95.882640 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e250' d='M 106.846054 95.380960 L 106.976778 95.673117 L 106.803669 96.422910 L 106.627207 95.997202 L 106.846054 95.380960 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e251' d='M 103.805849 90.476085 L 104.205170 90.713897 L 104.184016 90.948531 L 104.683871 91.470320 L 104.876639 92.192846 L 105.952969 92.336247 L 106.139930 92.662455 L 106.405723 92.686918 L 106.732908 93.144818 L 106.880345 93.104237 L 106.851331 93.521017 L 106.666260 93.334264 L 106.848252 93.604531 L 106.642490 93.988009 L 106.384943 93.883286 L 106.451240 93.598935 L 106.225963 93.635965 L 106.298966 93.814692 L 105.872411 94.159458 L 106.446403 93.966405 L 106.527487 94.137315 L 105.551668 94.818646 L 105.175656 94.662908 L 105.463943 94.404922 L 105.301664 94.260156 L 104.883587 94.654332 L 104.508839 94.623273 L 104.111771 94.955911 L 103.877808 94.827111 L 103.428517 95.022649 L 103.021060 94.912154 L 102.699119 94.957001 L 102.584138 95.214172 L 102.541094 95.095378 L 102.280634 95.167501 L 101.998130 94.834148 L 101.778404 94.875102 L 102.033797 94.165175 L 102.441264 94.223127 L 102.593923 94.323452 L 102.499139 94.475649 L 102.780808 94.556580 L 102.750914 94.254781 L 103.133864 94.406658 L 103.722786 94.311710 L 104.333454 94.060672 L 104.474184 93.800872 L 103.123364 94.087674 L 103.060530 93.752562 L 103.458477 93.440373 L 103.515044 93.134230 L 104.148109 92.998723 L 104.545560 92.528432 L 103.652585 92.729742 L 103.535824 92.377917 L 103.018466 91.993384 L 102.625093 92.042145 L 102.272828 91.855512 L 102.306032 91.648211 L 102.698195 91.364189 L 102.479470 91.380989 L 102.442034 91.005581 L 102.797387 91.062907 L 102.893689 90.926530 L 103.333689 91.314142 L 103.106213 91.054451 L 103.105883 90.701032 L 103.328302 90.847667 L 103.319011 90.606040 L 103.805849 90.476085 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e252' d='M 106.615223 77.385516 L 106.824559 77.396895 L 106.733085 77.517395 L 106.615223 77.385516 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e253' d='M 106.449602 96.213355 L 106.551895 96.621527 L 106.054833 96.686504 L 106.069675 96.462270 L 106.449602 96.213355 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e254' d='M 106.471525 95.773684 L 106.399236 96.198732 L 106.285333 96.073834 L 106.471525 95.773684 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e255' d='M 106.288852 96.831423 L 106.409681 97.308794 L 105.303940 98.975288 L 104.991498 99.949072 L 104.887435 100.075509 L 104.834881 99.942751 L 104.771553 100.222066 L 104.537919 100.209258 L 104.296249 101.107411 L 103.801342 101.038355 L 103.474309 100.580653 L 103.534394 99.716924 L 103.970877 99.180171 L 104.739559 99.105683 L 105.148610 98.880460 L 104.577368 99.061155 L 104.129252 98.878151 L 104.539459 98.127940 L 106.288852 96.831423 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e256' d='M 106.125748 82.012009 L 106.329091 82.303804 L 106.171540 82.288246 L 106.125748 82.012009 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e257' d='M 106.007392 82.893495 L 106.129980 83.050607 L 105.981939 83.133120 L 106.007392 82.893495 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e258' d='M 105.915807 101.961125 L 105.922580 102.509652 L 105.578825 102.974380 L 105.525612 102.590616 L 105.915807 101.961125 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e259' d='M 105.538475 79.195323 L 105.632039 79.390641 L 105.425341 80.085385 L 105.281753 79.684030 L 105.434610 79.648726 L 105.384607 79.350456 L 105.538475 79.195323 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e260' d='M 105.176645 82.345143 L 105.628301 82.599611 L 105.479764 82.996844 L 105.057465 82.801746 L 104.973687 82.557942 L 105.176645 82.345143 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e261' d='M 105.492188 87.384756 L 105.590370 87.482222 L 105.281424 87.564407 L 105.492188 87.384756 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e262' d='M 105.253608 80.006279 L 105.367994 80.469204 L 105.009089 81.060103 L 105.221338 81.946702 L 104.807120 82.293249 L 104.571452 82.022927 L 104.649184 81.141574 L 104.841643 80.674251 L 105.118539 80.760173 L 105.036795 80.325175 L 105.112108 80.238759 L 105.122662 80.449799 L 105.307536 80.300493 L 105.253608 80.006279 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e263' d='M 103.928383 86.931342 L 104.111551 87.199608 L 104.057184 87.632077 L 103.741696 87.834816 L 103.440699 87.643941 L 103.434014 87.421643 L 103.764565 87.292127 L 103.733450 87.036559 L 103.928383 86.931342 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e264' d='M 103.927107 92.765529 L 103.994680 92.858212 L 103.838063 92.835234 L 103.927107 92.765529 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e265' d='M 103.276793 99.249601 L 103.351281 100.804281 L 103.714320 101.415741 L 103.840998 102.403390 L 103.550996 102.720626 L 103.450506 102.640091 L 103.430001 102.895219 L 102.897482 103.070516 L 102.445552 102.984495 L 102.239240 103.444010 L 102.041393 103.592107 L 101.732777 103.535265 L 101.558679 103.410037 L 101.619809 103.064369 L 102.137211 102.517612 L 101.657795 101.717432 L 102.218295 101.213993 L 101.628341 101.077440 L 101.125110 101.971954 L 100.590414 102.367559 L 100.344444 102.076897 L 100.831007 101.395787 L 100.873446 101.028734 L 100.693136 100.878439 L 100.897414 100.689663 L 100.956069 100.160662 L 101.389144 100.118498 L 101.870198 99.740067 L 101.819480 100.408094 L 101.918310 99.845724 L 102.146446 99.917738 L 102.778906 99.348662 L 103.276793 99.249601 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e266' d='M 103.654510 84.209593 L 103.811071 84.389299 L 103.413619 84.629475 L 103.311040 84.393587 L 103.654510 84.209593 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e267' d='M 102.470620 92.332421 L 103.050306 92.340205 L 103.577273 92.729852 L 103.143331 92.845932 L 103.028317 92.702640 L 102.899296 92.879103 L 102.709255 92.606878 L 102.797707 92.468787 L 102.651809 92.669492 L 102.460505 92.561580 L 102.470620 92.332421 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e268' d='M 103.276628 96.857688 L 103.374798 97.015515 L 102.900912 97.729828 L 102.975268 97.939275 L 102.446871 98.456347 L 102.294597 98.175107 L 102.641144 98.111614 L 102.290310 97.987376 L 102.544283 97.450788 L 103.276628 96.857688 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e269' d='M 103.016443 88.064217 L 103.306643 88.123752 L 103.326598 88.343423 L 102.973014 88.332099 L 103.016443 88.064217 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e270' d='M 102.756818 85.445202 L 103.205163 85.768946 L 103.277453 85.978832 L 103.092623 86.077508 L 103.325498 86.172666 L 103.144529 86.697763 L 102.783249 86.998078 L 101.845691 86.044854 L 102.756818 85.445202 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e271' d='M 101.903753 81.900261 L 101.891912 82.083023 L 101.753997 82.062419 L 101.903753 81.900261 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e272' d='M 101.254736 85.232579 L 101.705566 85.289971 L 101.628110 85.435042 L 101.839589 85.591495 L 101.327574 85.392768 L 100.884331 85.506782 L 101.254736 85.232579 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e273' d='M 101.827660 94.095425 L 101.705951 94.495406 L 101.421940 94.583813 L 101.471493 94.287280 L 101.827660 94.095425 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e274' d='M 101.514371 89.895904 L 101.630583 90.115904 L 101.274361 90.748969 L 101.115006 90.700505 L 101.110487 90.936975 L 100.484789 91.265381 L 100.388148 91.096175 L 100.288537 91.287865 L 100.033739 91.165771 L 99.890371 91.409520 L 99.867337 91.062973 L 100.184529 91.006570 L 100.527943 90.476250 L 101.514371 89.895904 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e275' d='M 99.491050 91.417546 L 99.670811 91.805103 L 99.438804 91.814381 L 99.408371 91.975847 L 99.333168 91.797318 L 99.142868 91.829447 L 99.057305 92.243542 L 98.616612 92.219959 L 98.458522 92.730324 L 97.882222 92.595389 L 97.945770 92.156652 L 97.738853 91.965458 L 97.994586 91.763873 L 98.394786 91.644802 L 98.650789 91.820971 L 99.053688 91.552503 L 99.309709 91.646283 L 99.491050 91.417546 Z ' fill='#3A639D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.73'/>\n <path id='svg_3c9aaa3e0504a623_e276' d='M 126.067299 98.481469 L 127.317595 98.620802 L 127.824025 99.272184 L 128.581119 99.453681 L 129.122389 99.993018 L 128.406196 100.750518 L 128.148100 100.411393 L 127.806609 100.413756 L 127.697324 100.650029 L 127.938555 101.033913 L 127.524545 101.425307 L 127.009507 101.201843 L 126.520691 101.421569 L 126.266168 101.221579 L 125.827871 101.542563 L 125.621339 101.461160 L 125.226031 101.834446 L 125.061080 101.516737 L 124.198098 102.228457 L 123.999702 102.502440 L 124.076169 102.687148 L 123.832201 102.826723 L 123.449097 101.702523 L 122.827884 102.014525 L 122.694884 101.755583 L 122.344148 101.789654 L 122.186816 101.405461 L 121.791288 101.562958 L 121.466334 102.041132 L 120.895422 101.848453 L 120.650607 101.542673 L 119.667807 101.915058 L 119.612944 101.650035 L 119.800434 101.475387 L 119.572012 100.919427 L 119.842719 100.643750 L 119.265187 100.733851 L 119.025848 100.481801 L 119.366227 100.392262 L 119.719811 99.988653 L 120.166386 99.875937 L 120.645208 99.257957 L 121.078019 99.403876 L 121.324725 99.167055 L 122.066943 99.349585 L 122.686869 99.254461 L 122.946395 99.502486 L 123.508313 99.378776 L 124.114133 99.901181 L 124.669455 99.875816 L 125.388332 99.532073 L 125.458181 99.122175 L 126.067299 98.481469 Z ' fill='#3A5A97' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.24'/>\n <path id='svg_3c9aaa3e0504a623_e277' d='M 129.205640 57.794349 L 129.308912 57.955913 L 129.091363 57.961927 L 129.154252 58.267465 L 128.974590 58.369802 L 128.790532 58.239825 L 128.900675 57.888605 L 129.205640 57.794349 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e278' d='M 128.084815 58.679991 L 128.120349 58.857057 L 128.342856 58.891239 L 128.009976 59.376240 L 128.276009 59.340135 L 128.564165 59.027681 L 128.781373 59.067536 L 128.959286 58.776324 L 129.036115 59.130743 L 129.289088 59.231090 L 128.633639 59.218788 L 128.377863 59.660932 L 128.438916 59.894852 L 128.293612 59.652214 L 128.027116 59.927164 L 127.999739 59.670641 L 127.832271 59.822914 L 127.618834 59.735255 L 127.253926 60.348035 L 127.240722 59.892136 L 127.894786 59.316880 L 127.716080 58.833639 L 127.804960 59.061258 L 127.966426 59.020424 L 128.084815 58.679991 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e279' d='M 127.663054 60.614651 L 127.685439 60.850682 L 128.031404 60.874760 L 127.810128 60.934560 L 127.867959 61.185718 L 128.240179 61.118399 L 128.232131 61.685540 L 128.039364 61.587359 L 127.794923 61.731365 L 127.798529 61.418461 L 127.634237 61.295224 L 127.486625 61.376111 L 127.528690 61.691191 L 127.273387 61.651226 L 127.393754 61.271882 L 127.696313 61.149063 L 127.364399 60.727775 L 127.663054 60.614651 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e280' d='M 127.922349 60.681235 L 127.998695 60.783219 L 127.839527 60.828605 L 127.922349 60.681235 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e281' d='M 127.146718 63.763647 L 127.413456 63.807538 L 127.291220 63.936865 L 127.146718 63.763647 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e282' d='M 123.935208 60.672548 L 124.864069 61.057753 L 125.036012 61.285350 L 124.933906 61.371911 L 125.298034 61.699239 L 125.244655 62.117053 L 124.949914 61.985041 L 124.923385 62.294142 L 124.524338 62.440908 L 124.641397 62.530688 L 125.256716 62.447944 L 125.550919 62.769841 L 125.744829 62.389562 L 125.947249 62.474551 L 125.847122 62.681269 L 126.008785 62.686789 L 125.810203 63.005135 L 126.014855 63.071289 L 126.197078 62.765026 L 126.400377 62.824561 L 126.543680 62.671463 L 126.616058 63.038514 L 126.283847 63.148295 L 126.372111 63.495391 L 126.574959 63.575805 L 126.676274 63.498184 L 126.483034 63.269873 L 127.142013 62.936266 L 127.107391 63.590505 L 126.646248 63.642312 L 126.336346 64.163935 L 126.194472 63.923145 L 125.933726 63.869755 L 125.916118 63.921334 L 125.682491 63.875549 L 125.483753 63.080689 L 124.072410 63.680132 L 123.764826 63.243826 L 123.713647 62.764894 L 123.409550 63.172812 L 123.024027 62.963400 L 122.988812 62.352116 L 123.192661 61.870874 L 123.066180 61.271068 L 123.315953 60.957000 L 123.175290 60.869890 L 123.935208 60.672548 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e283' d='M 125.903615 63.957959 L 125.826145 64.184891 L 126.004751 64.128335 L 125.987467 64.362837 L 126.187985 64.386761 L 125.871596 64.545061 L 126.044892 64.804443 L 125.708151 65.105176 L 125.752866 65.855519 L 125.399151 65.798018 L 125.387056 65.199564 L 125.119868 64.944624 L 125.366827 64.890256 L 125.237081 64.711408 L 125.034121 64.787666 L 125.171025 64.619603 L 125.543069 64.703415 L 125.889188 64.509669 L 125.336230 64.380385 L 125.820329 64.346203 L 125.757583 64.084973 L 125.903615 63.957959 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e284' d='M 126.980085 59.576241 L 127.082588 59.801069 L 126.931665 59.741830 L 126.980085 59.576241 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e285' d='M 126.855924 59.524171 L 126.834320 59.760411 L 127.015752 59.871236 L 126.827042 60.259199 L 126.976468 60.783890 L 126.646687 60.937560 L 126.415440 60.260903 L 126.718867 60.258902 L 126.648843 59.717202 L 126.855924 59.524171 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e286' d='M 126.554422 61.520138 L 126.424412 62.018278 L 126.533225 62.250647 L 126.397794 62.371785 L 125.722280 62.214036 L 125.926470 61.633119 L 126.216187 61.894579 L 126.554422 61.520138 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e287' d='M 125.638931 58.167546 L 125.795119 58.316720 L 125.432233 58.693041 L 125.960872 58.854704 L 126.101975 59.327281 L 126.252501 59.305259 L 126.367614 59.549492 L 126.233481 59.519465 L 126.074951 59.803619 L 126.123030 59.461458 L 125.883998 59.193533 L 125.704513 59.104664 L 125.449165 59.430421 L 124.917997 58.537689 L 125.318187 58.568088 L 125.638931 58.167546 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e288' d='M 126.126812 57.859656 L 126.136190 58.495294 L 125.948426 58.642708 L 126.126812 57.859656 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e289' d='M 125.812369 60.496934 L 125.827409 61.087328 L 125.669847 60.681510 L 125.812369 60.496934 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e290' d='M 125.548500 61.464518 L 125.655125 61.622761 L 125.474453 61.703593 L 125.357460 61.520237 L 125.548500 61.464518 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e291' d='M 124.880473 60.118898 L 125.143781 60.400864 L 125.632510 60.378720 L 125.469043 60.598676 L 125.554272 60.926104 L 125.071866 61.037710 L 124.726044 60.790872 L 124.571912 60.439388 L 124.880473 60.118898 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e292' d='M 125.559110 61.019723 L 125.536418 61.230433 L 125.229275 61.189247 L 125.559110 61.019723 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e293' d='M 124.827810 64.394006 L 124.565767 64.607872 L 124.783425 64.621407 L 124.758280 64.847135 L 124.380992 64.813558 L 124.361752 64.598450 L 124.827810 64.394006 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e294' d='M 123.027721 63.356311 L 123.931812 64.045316 L 123.910878 64.509636 L 124.218186 64.755672 L 123.634871 65.159885 L 124.296015 64.926548 L 124.292003 65.168889 L 124.424245 65.180027 L 123.786793 65.193650 L 123.785661 65.354762 L 123.359327 65.267192 L 122.859735 64.170543 L 122.514750 64.097550 L 122.731979 63.482012 L 123.027721 63.356311 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e295' d='M 123.322946 63.266893 L 123.610882 63.497382 L 123.338317 63.466234 L 123.322946 63.266893 Z ' fill='#3A5793' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 15.4'/>\n <path id='svg_3c9aaa3e0504a623_e296' d='M 139.125632 45.033923 L 139.165355 45.184240 L 138.890624 45.296856 L 139.125632 45.033923 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e297' d='M 138.333532 39.968967 L 138.350541 40.467173 L 138.585383 39.979292 L 139.035807 40.286325 L 138.771565 40.400833 L 138.917341 40.763541 L 138.588374 40.690087 L 138.905687 41.171218 L 138.404886 41.723803 L 138.627239 41.948828 L 138.485312 42.071725 L 138.140084 41.880310 L 137.931023 42.134778 L 137.731197 41.959140 L 137.708659 41.523153 L 137.902668 41.542822 L 137.823551 41.228115 L 138.008589 40.755680 L 137.870773 40.641832 L 138.333532 39.968967 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e298' d='M 138.434077 42.567358 L 138.646381 42.627827 L 138.793784 42.983884 L 138.996722 42.786302 L 138.844063 43.358578 L 138.655407 43.118402 L 138.303704 43.072412 L 138.488830 43.355554 L 138.282627 43.436584 L 137.948999 42.864495 L 138.014746 42.605069 L 138.252722 42.727602 L 138.434077 42.567358 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e299' d='M 138.153596 42.007813 L 138.368220 42.103444 L 138.315446 42.246592 L 138.153596 42.007813 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e300' d='M 138.209019 45.573094 L 137.817857 46.277074 L 137.458247 46.243584 L 137.664252 45.816480 L 138.209019 45.573094 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e301' d='M 137.695575 42.746073 L 137.827509 42.846233 L 137.620098 43.030501 L 137.695575 42.746073 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e302' d='M 137.340232 41.348010 L 137.617316 41.507816 L 137.745270 42.509746 L 137.440920 42.474949 L 137.223691 42.177008 L 137.521807 42.784444 L 137.361451 42.989163 L 137.126289 42.922304 L 137.625760 43.235989 L 137.563476 43.623986 L 137.356889 43.607372 L 137.524347 43.815423 L 137.491791 44.244516 L 137.247438 44.349954 L 136.957699 44.149249 L 137.047943 44.499534 L 136.562282 44.692092 L 136.467433 44.888597 L 136.661266 44.939479 L 136.496568 45.067401 L 136.660166 45.207306 L 136.487277 45.073942 L 136.114893 45.421755 L 136.645983 45.276846 L 136.685839 45.729007 L 136.948223 45.088950 L 137.001711 45.259311 L 137.373326 44.825687 L 136.824150 45.662094 L 136.897318 45.820526 L 137.021446 45.521035 L 137.226714 45.589971 L 137.226219 45.978572 L 136.968452 46.119026 L 136.546241 46.053356 L 136.669347 46.405071 L 136.741581 46.210171 L 136.864950 46.406434 L 137.174270 46.351891 L 137.197468 46.610668 L 136.728343 46.911182 L 136.796641 47.102993 L 137.044864 46.965000 L 137.082135 47.175545 L 136.827723 47.172731 L 136.625863 47.429794 L 136.697427 47.167156 L 136.521910 47.226736 L 136.478547 47.064908 L 136.526253 47.352942 L 136.304053 47.536826 L 136.580730 47.504171 L 136.378883 47.896697 L 136.693975 47.612577 L 136.385072 48.243058 L 136.773740 47.846870 L 136.722989 48.319514 L 136.918285 48.527002 L 136.745506 48.530586 L 136.775609 48.775413 L 136.672337 48.624073 L 136.658792 48.899430 L 136.483111 48.769442 L 136.512895 49.048758 L 136.358718 49.127886 L 136.494567 49.767843 L 136.694249 49.939128 L 136.464991 49.802157 L 136.317577 49.945615 L 136.498217 50.691538 L 136.397178 50.417290 L 136.316620 50.587551 L 136.196429 50.399380 L 136.052664 50.473362 L 136.201585 50.912637 L 136.095290 51.333749 L 135.971096 51.312948 L 136.111958 51.484099 L 136.097357 51.758875 L 135.934814 51.784029 L 136.119071 51.881694 L 136.064428 52.167606 L 135.945643 51.883915 L 135.845417 52.134183 L 135.809069 51.629557 L 135.614532 51.794233 L 135.421963 51.728431 L 135.353852 51.428171 L 135.526785 51.342468 L 135.518551 51.022143 L 135.733141 51.016833 L 135.718409 50.745817 L 135.536527 50.738594 L 135.576657 50.600558 L 135.725665 50.706776 L 135.622228 50.376270 L 135.800450 50.205689 L 136.055269 49.165223 L 136.093135 48.616014 L 135.857236 48.736272 L 135.974108 47.958245 L 135.773293 48.397146 L 136.070145 47.462227 L 135.714582 48.354542 L 135.920389 47.280092 L 135.593038 47.906956 L 135.535328 47.363100 L 135.081342 47.245932 L 135.416686 47.467725 L 135.515417 47.993427 L 135.460939 47.801298 L 135.306961 47.919324 L 135.283136 47.706515 L 135.268205 48.173188 L 135.143363 48.353278 L 135.054416 48.079757 L 134.895326 48.578501 L 134.372427 48.038505 L 134.398978 47.872103 L 134.745801 47.866166 L 134.637394 47.816800 L 134.842476 47.668232 L 134.622332 47.740719 L 134.714587 47.545423 L 134.463824 47.348775 L 134.574176 47.564850 L 134.356374 47.919214 L 134.264108 47.578021 L 133.892296 47.839394 L 133.734360 47.687560 L 133.825240 47.569105 L 133.495405 47.500565 L 133.559876 46.974950 L 133.420301 46.845214 L 133.786144 46.602291 L 134.040832 46.617793 L 134.211852 46.853516 L 134.191677 46.669578 L 134.436151 46.784921 L 134.346699 46.626864 L 134.622057 46.459197 L 134.791758 47.008044 L 134.901428 46.830318 L 134.726945 46.614879 L 134.990539 46.728409 L 134.868609 46.561116 L 135.094437 46.337213 L 135.447646 46.865280 L 135.589355 46.635209 L 135.402888 46.410216 L 135.525862 46.138597 L 135.675399 46.234040 L 135.620524 45.959716 L 136.085658 46.058689 L 135.847231 45.833389 L 135.469691 45.848089 L 135.528061 45.534360 L 135.395577 45.757241 L 135.223941 45.667966 L 135.256496 45.236167 L 134.931058 45.275143 L 134.945131 44.927166 L 135.112677 44.846202 L 134.851513 44.834812 L 135.050403 44.598319 L 134.833976 44.625201 L 134.900340 44.367533 L 134.652182 44.832613 L 134.649895 44.444473 L 134.311726 44.370359 L 133.961231 44.583752 L 133.832540 44.410809 L 133.959308 44.136660 L 134.254862 44.201110 L 134.232467 43.789398 L 134.430258 43.561041 L 134.524151 43.862237 L 134.939469 44.190038 L 135.266995 44.089164 L 134.905771 44.110438 L 134.644102 43.787748 L 135.022917 43.342196 L 135.024512 42.760916 L 135.619414 43.017000 L 135.564508 42.676972 L 136.521086 42.579177 L 136.679187 42.298981 L 136.713105 42.740565 L 136.971696 42.933804 L 136.752300 42.663999 L 136.847183 41.448005 L 137.093845 41.415737 L 137.170257 41.684607 L 137.145464 41.383743 L 137.361166 41.488410 L 137.340232 41.348010 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e303' d='M 137.499708 48.441949 L 137.687110 48.487576 L 137.660833 48.724728 L 137.499708 48.441949 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e304' d='M 137.300267 47.972593 L 137.253870 48.353168 L 137.445395 48.304297 L 137.284875 49.085403 L 136.979997 48.879091 L 137.029945 48.518767 L 136.812528 48.231865 L 136.924584 48.090839 L 137.236609 48.248116 L 137.164815 48.069729 L 137.300267 47.972593 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e305' d='M 135.888791 49.170556 L 135.679016 49.869752 L 135.699795 49.402781 L 135.888791 49.170556 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e306' d='M 135.709233 49.170526 L 135.736957 49.199361 L 135.475782 49.861616 L 135.709233 49.170526 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e307' d='M 135.742572 49.071830 L 135.797207 48.910095 L 135.766829 49.074705 L 135.742572 49.071830 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e308' d='M 135.085036 45.587552 L 135.386132 45.860282 L 135.066291 46.145413 L 134.796431 45.786937 L 135.085036 45.587552 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e309' d='M 134.808139 46.189557 L 135.030669 46.363160 L 134.818420 46.562656 L 134.808139 46.189557 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e310' d='M 134.147149 47.805971 L 134.246430 48.018110 L 134.021646 47.936806 L 134.147149 47.805971 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e311' d='M 134.052266 55.842305 L 134.050397 56.213314 L 133.763166 56.349108 L 133.855189 55.860941 L 134.052266 55.842305 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e312' d='M 133.324539 46.137662 L 133.520275 46.318588 L 133.624304 46.175264 L 133.649196 46.446048 L 133.326024 46.465794 L 133.202500 46.254260 L 133.324539 46.137662 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e313' d='M 131.167579 48.451899 L 131.374386 48.674703 L 131.223486 49.041754 L 130.899258 48.747322 L 131.167579 48.451899 Z ' fill='#3B72A1' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 13.85'/>\n <path id='svg_3c9aaa3e0504a623_e314' d='M 107.554925 60.287993 L 107.623036 60.483696 L 107.443880 60.513381 L 107.554925 60.287993 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e315' d='M 101.242384 73.333909 L 100.715246 73.838156 L 100.916819 74.267470 L 100.759905 74.360176 L 100.998277 74.363067 L 101.190582 74.768105 L 100.931827 74.835777 L 101.213561 75.261265 L 100.329549 75.009887 L 100.483855 75.197606 L 100.254674 75.197551 L 100.298344 75.375310 L 100.493101 75.389713 L 100.702481 75.904389 L 100.307997 75.788683 L 100.323225 76.153085 L 99.903894 75.759371 L 100.058026 76.008441 L 99.964529 76.149787 L 99.864083 76.019952 L 99.879266 76.316133 L 99.718065 76.217403 L 99.765693 76.489187 L 99.445599 76.373008 L 99.586317 76.595504 L 99.332520 76.648762 L 99.265772 76.884275 L 99.068970 76.830589 L 99.060339 76.988448 L 98.120528 75.583679 L 98.444427 75.646787 L 98.456136 75.866567 L 98.837909 75.668029 L 99.063528 75.275447 L 99.276107 75.278361 L 99.380390 74.832533 L 100.249188 74.957035 L 99.932865 74.657280 L 100.058389 74.541530 L 99.642455 74.487954 L 99.729851 74.340034 L 99.591869 74.436346 L 99.106571 74.088699 L 99.129715 74.226570 L 98.947041 74.241687 L 98.588729 74.028449 L 98.549204 73.691082 L 98.389015 73.749023 L 98.608630 73.360367 L 98.809885 73.517094 L 98.980849 73.266309 L 99.773994 73.084844 L 98.910869 73.238768 L 98.773768 73.131736 L 99.050939 72.995624 L 98.806146 72.962091 L 99.026147 72.664469 L 98.790864 72.893210 L 98.625286 72.836974 L 98.365321 72.103364 L 98.687075 71.669905 L 98.631938 71.373878 L 99.040934 71.394129 L 98.898556 71.231058 L 99.207171 70.666654 L 99.183247 70.812904 L 99.493633 70.985221 L 99.610120 70.801283 L 99.924894 71.097421 L 99.899914 71.222010 L 99.564944 71.197339 L 99.999602 71.427641 L 100.127083 72.312589 L 100.029892 71.523347 L 100.131205 71.626916 L 100.089426 71.428355 L 100.212016 71.511034 L 100.272309 71.290550 L 100.929529 71.428147 L 101.007139 71.751759 L 101.117689 71.705307 L 101.191452 71.541818 L 100.886277 71.401364 L 101.009470 71.195150 L 100.594295 70.656430 L 100.549987 70.403776 L 100.832172 70.342295 L 100.516398 70.317744 L 100.674940 70.037659 L 100.984436 70.032106 L 101.701399 69.489790 L 101.770764 69.637040 L 102.380871 69.406814 L 102.578750 69.031001 L 104.035184 68.098819 L 104.341436 67.677443 L 104.813002 68.319435 L 104.708499 68.562689 L 104.854726 68.929740 L 104.531267 69.494309 L 104.837025 69.846244 L 104.360951 70.126967 L 104.014096 70.696560 L 103.770623 70.719439 L 103.640359 71.130579 L 103.942115 71.438294 L 104.810363 70.808011 L 104.946849 70.876837 L 104.801535 71.334539 L 104.209469 71.800971 L 103.917102 71.472971 L 103.543058 71.675083 L 103.269130 71.357847 L 103.366123 72.082969 L 103.004107 72.225853 L 103.346333 72.202919 L 103.331545 72.342110 L 102.580565 72.167758 L 102.990275 72.425283 L 102.687806 72.647889 L 101.627065 72.822483 L 102.899493 72.822131 L 103.129741 72.567607 L 103.122100 72.902281 L 103.246448 72.814929 L 103.298452 73.016183 L 103.242929 73.354265 L 102.850733 73.331001 L 103.335724 73.472456 L 103.111875 73.944616 L 102.802335 73.720603 L 102.715699 73.846105 L 102.658845 73.681462 L 101.928645 73.807855 L 102.549285 73.889534 L 102.697052 74.057804 L 102.518446 74.670199 L 102.198780 74.782123 L 102.033752 74.404407 L 102.049419 74.903282 L 101.848440 74.787730 L 101.803582 74.959355 L 101.433946 74.301113 L 101.627175 74.859635 L 101.455935 74.727646 L 101.334775 74.836381 L 101.039518 74.287974 L 101.002335 73.676624 L 101.242384 73.333909 Z M 101.308367 73.239706 L 101.358964 73.167469 L 101.858797 73.206598 L 101.204853 73.104975 L 101.308367 73.239706 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e316' d='M 100.961204 75.277086 L 101.302781 75.402159 L 101.347200 75.586042 L 101.020618 75.629097 L 100.961204 75.277086 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e317' d='M 100.077112 70.520043 L 100.340871 70.588484 L 100.403309 70.900497 L 100.536519 70.811398 L 100.721227 71.312254 L 100.184265 71.193084 L 100.288482 70.973424 L 100.077112 70.520043 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e318' d='M 99.013118 74.613962 L 99.144503 74.984478 L 98.959135 75.127461 L 98.735671 74.936761 L 98.520289 75.157751 L 98.478839 74.922523 L 99.013118 74.613962 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e319' d='M 98.324422 73.131296 L 98.472133 73.565338 L 98.155326 73.487354 L 98.048789 73.261581 L 98.324422 73.131296 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e320' d='M 98.412477 76.384014 L 98.421173 76.670597 L 98.278904 76.448123 L 98.412477 76.384014 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e321' d='M 96.228097 80.610856 L 96.487056 80.775445 L 96.352950 80.607449 L 95.962535 80.482715 L 95.950386 79.919477 L 96.477452 79.644889 L 96.543519 79.678459 L 96.458377 79.566003 L 96.871716 79.578098 L 96.452274 79.550116 L 96.615389 79.309711 L 96.451736 79.092074 L 96.441610 79.531701 L 96.198137 79.663690 L 96.223534 79.347322 L 95.988525 79.039915 L 96.134478 78.850755 L 95.972749 79.021995 L 95.781389 78.732772 L 96.020520 78.679230 L 96.504103 78.942229 L 96.012658 78.660990 L 95.543578 78.735225 L 95.184672 78.205476 L 95.402496 78.139410 L 95.588490 77.571048 L 95.891774 77.551961 L 96.182359 77.805286 L 95.927012 77.578942 L 96.374543 77.508819 L 96.359636 77.613426 L 96.588387 77.544606 L 96.798822 77.204107 L 96.865982 77.584933 L 96.940706 77.537020 L 97.047122 77.746807 L 96.966874 77.509424 L 97.131560 77.596259 L 97.164830 77.336040 L 97.499602 77.366319 L 97.647635 77.234193 L 97.590702 77.346881 L 97.839453 77.679344 L 97.612746 77.826671 L 97.950443 77.985487 L 98.171422 77.882808 L 97.814276 77.761748 L 98.063851 77.710898 L 98.407760 78.030509 L 98.127949 78.408171 L 97.926508 78.169172 L 98.060542 78.102490 L 97.843356 78.210435 L 97.718293 78.067230 L 97.751167 78.230610 L 97.519018 78.001099 L 97.736379 77.936396 L 97.379167 77.970204 L 97.572913 78.076137 L 97.483967 78.208642 L 97.796080 78.302073 L 97.592945 78.322733 L 97.791517 78.373285 L 97.575530 78.548626 L 98.107885 78.573858 L 97.979303 78.908146 L 97.057328 78.989430 L 97.819718 79.030570 L 97.844346 79.299002 L 97.601487 79.520443 L 97.230521 79.437917 L 97.402586 79.595139 L 97.028937 79.577767 L 96.886932 79.421404 L 96.961266 79.615973 L 97.285714 79.597283 L 97.319303 80.007433 L 96.909284 79.727887 L 96.713566 79.764863 L 96.970381 79.895355 L 96.905480 80.052401 L 97.030719 79.935903 L 97.329197 80.158279 L 97.102436 80.129802 L 97.203256 80.325889 L 97.000187 80.212701 L 96.984685 80.387953 L 96.898762 80.242717 L 96.818117 80.384766 L 97.292311 80.554301 L 97.059557 80.712787 L 97.309298 80.735875 L 97.014480 80.746650 L 97.088692 80.895626 L 96.545574 80.621334 L 96.877158 80.903432 L 96.671533 80.892695 L 96.683929 80.900573 L 96.456958 80.907346 L 96.797832 81.118265 L 96.589321 81.189454 L 96.994579 81.491309 L 96.751600 81.474696 L 96.820998 81.578341 L 97.094905 81.509065 L 96.824737 81.721438 L 97.027893 81.814218 L 97.056423 82.086772 L 97.240196 82.132180 L 96.796733 82.579272 L 96.666118 83.012181 L 96.467971 82.981037 L 96.696023 83.189303 L 96.761440 83.762721 L 96.590696 83.922252 L 96.253505 83.718127 L 96.446833 83.940063 L 96.198456 83.782380 L 96.052052 83.869050 L 96.135248 84.047413 L 96.728182 84.100528 L 96.744036 84.303476 L 96.938507 84.343122 L 96.808057 84.604297 L 96.476188 84.423492 L 95.838550 84.430990 L 95.591766 84.083443 L 95.612788 83.023461 L 95.410753 82.705280 L 95.640538 82.565121 L 95.581245 82.153575 L 95.861287 81.953881 L 95.738466 80.931402 L 96.228097 80.610856 Z M 97.035584 78.988256 L 97.080479 78.785766 L 96.766982 78.973762 L 97.035584 78.988256 Z M 96.454153 82.968418 L 96.537812 82.956054 L 96.448756 82.829067 L 96.145813 82.909976 L 96.065554 82.750225 L 96.124286 82.928798 L 96.400766 82.919662 L 96.454153 82.968418 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e322' d='M 97.661893 77.205972 L 97.359652 77.123076 L 97.584656 76.800057 L 97.843587 76.772131 L 98.078309 77.173377 L 97.759732 77.012318 L 97.661893 77.205972 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e323' d='M 97.481526 79.645164 L 97.642981 79.804254 L 97.466354 80.069949 L 97.310188 79.792975 L 97.514015 79.796173 L 97.374605 79.691671 L 97.481526 79.645164 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e324' d='M 97.447773 76.173589 L 97.637594 76.365499 L 97.329912 76.489683 L 97.181431 76.328117 L 97.447773 76.173589 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e325' d='M 97.360147 80.771278 L 97.355364 80.968134 L 97.144764 81.008045 L 97.242670 81.064722 L 97.047353 80.986825 L 97.360147 80.771278 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e326' d='M 96.999472 76.935400 L 97.038503 77.195750 L 96.906843 77.100648 L 96.999472 76.935400 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e327' d='M 96.884073 80.847404 L 97.021439 80.887138 L 96.909295 81.022767 L 96.884073 80.847404 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e328' d='M 96.214023 84.552019 L 96.536603 84.639589 L 96.339240 85.098622 L 96.214023 84.552019 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e329' d='M 96.103727 85.402708 L 96.122439 85.543339 L 95.937787 85.465497 L 96.103727 85.402708 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e330' d='M 95.915357 85.471105 L 96.046027 85.644214 L 95.833558 85.553673 L 95.915357 85.471105 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e331' d='M 95.704207 84.925502 L 95.812393 85.060899 L 95.631644 85.167327 L 95.704207 84.925502 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e332' d='M 95.297465 84.930944 L 95.483284 85.035931 L 95.408125 85.445498 L 95.635547 85.660430 L 95.392469 85.518238 L 95.536618 85.648260 L 95.373504 85.644104 L 95.703823 85.938097 L 95.437216 85.766275 L 95.525876 85.925772 L 95.264075 86.118440 L 95.282513 86.291241 L 94.966805 86.340661 L 94.831254 86.141693 L 94.824976 86.280577 L 94.644017 86.253816 L 94.579336 86.351953 L 94.959274 86.478258 L 94.723980 86.429288 L 94.602678 86.562685 L 94.797050 86.640097 L 94.485356 86.710463 L 94.522901 86.476884 L 94.286024 86.384750 L 94.391847 86.208562 L 94.640026 86.254443 L 94.439453 86.126433 L 94.792147 85.868897 L 94.862841 85.554982 L 94.725530 85.453458 L 95.177185 85.386282 L 95.297465 84.930944 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e333' d='M 94.629768 86.807269 L 94.865380 87.029688 L 94.570783 86.989283 L 94.629768 86.807269 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e334' d='M 94.467215 78.997862 L 94.567814 79.163605 L 94.799029 79.102585 L 94.647195 79.342814 L 94.606240 79.182460 L 94.228359 79.182129 L 94.467215 78.997862 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e335' d='M 94.252381 87.283826 L 94.429943 87.455230 L 94.097689 87.417300 L 94.252381 87.283826 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e336' d='M 93.733111 88.114627 L 93.943490 88.206047 L 93.613765 88.163663 L 93.733111 88.114627 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e337' d='M 93.905460 87.644403 L 93.893685 87.974228 L 93.592106 87.983957 L 93.660326 87.709589 L 93.905460 87.644403 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e338' d='M 88.459754 74.860569 L 88.785851 74.924942 L 88.869520 75.092334 L 88.701633 75.195793 L 88.837471 75.319591 L 88.470749 75.091509 L 88.459754 74.860569 Z ' fill='#3A649E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 14.63'/>\n <path id='svg_3c9aaa3e0504a623_e339' d='M 125.572282 93.757531 L 126.845249 93.865365 L 126.359072 93.901153 L 126.300247 94.022561 L 126.142645 93.839364 L 126.177955 95.063875 L 127.138649 95.415560 L 127.635788 95.891128 L 127.500566 96.135118 L 126.104384 97.069267 L 125.685547 97.020683 L 125.183548 96.689935 L 123.749610 97.872582 L 123.589937 98.519071 L 122.873501 98.571394 L 122.574637 98.843518 L 122.139320 98.934322 L 122.080961 99.177796 L 121.578269 99.091731 L 121.580237 98.904065 L 121.392001 98.831743 L 119.907861 98.513838 L 119.710169 98.259347 L 119.875009 97.938681 L 120.480335 97.863401 L 120.243931 97.702727 L 120.815470 97.517777 L 120.903931 97.278086 L 121.937824 97.553048 L 122.258841 97.468709 L 122.251024 97.241364 L 122.432423 97.140391 L 122.765754 97.175727 L 122.683230 96.993878 L 123.014418 96.867452 L 122.993033 96.574305 L 122.821233 96.510812 L 122.893115 96.403648 L 122.298179 96.319814 L 122.398570 96.131918 L 122.195106 95.962515 L 122.527734 95.716073 L 122.812262 95.730630 L 122.770988 95.420463 L 123.080088 95.106503 L 122.940040 94.971919 L 125.572282 93.757531 Z ' fill='#271D34' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 19.52'/>\n <path id='svg_3c9aaa3e0504a623_e340' d='M 125.772624 87.311423 L 126.501670 87.571938 L 127.019677 88.124687 L 127.187618 88.485528 L 127.119375 89.016552 L 127.477203 89.739903 L 128.054679 89.722752 L 128.509083 90.187259 L 128.784682 90.106790 L 128.661444 90.929048 L 128.279330 91.219237 L 128.238177 91.584112 L 128.389704 91.685251 L 127.994880 92.383942 L 126.855155 93.227837 L 126.685477 93.670884 L 126.140049 93.482625 L 124.636351 93.769812 L 124.772177 93.830787 L 124.309803 93.938753 L 124.323106 94.183162 L 124.153845 94.268974 L 124.279403 94.290963 L 124.097861 94.286192 L 124.221627 94.334391 L 123.020552 94.820822 L 123.301506 94.816765 L 122.940040 94.971919 L 123.080088 95.106503 L 122.770988 95.420463 L 122.812262 95.730630 L 122.527734 95.716073 L 122.195106 95.962515 L 122.398570 96.131918 L 122.298179 96.319814 L 122.893115 96.403648 L 123.014418 96.867452 L 122.683230 96.993878 L 122.765754 97.175727 L 122.251024 97.241364 L 122.258841 97.468709 L 121.097149 97.436594 L 120.937223 97.269577 L 120.815470 97.517777 L 120.411542 97.578522 L 120.364353 97.257879 L 120.741807 97.102712 L 120.870981 96.823969 L 120.580385 96.700655 L 120.242655 96.900513 L 119.765988 96.883581 L 119.474303 96.531151 L 119.088671 96.785565 L 119.025012 96.412245 L 118.844428 96.548303 L 118.663095 96.302850 L 118.390760 96.369752 L 117.965031 95.783085 L 117.743183 95.847875 L 117.472146 95.585018 L 117.238623 95.696173 L 116.731281 95.386896 L 116.406558 95.070365 L 116.406723 94.394586 L 116.707422 94.376061 L 116.697307 93.504690 L 116.964309 93.673511 L 117.400792 93.434545 L 117.039677 92.873000 L 116.061935 93.272926 L 115.856007 92.482419 L 115.630894 92.375828 L 115.377801 92.611880 L 114.764746 92.775424 L 114.658099 92.631945 L 114.507199 92.852606 L 114.177474 92.836388 L 113.784860 93.219877 L 113.456399 93.038797 L 113.670076 92.562350 L 113.393840 92.245653 L 114.059998 91.956771 L 114.326284 92.011580 L 113.840052 91.378295 L 113.892276 90.990409 L 113.653750 91.167640 L 113.309292 91.123112 L 113.311655 90.703451 L 113.714605 90.741877 L 114.164610 90.533202 L 114.209907 89.717792 L 114.505055 89.575909 L 114.696415 89.180050 L 115.210684 89.583550 L 115.689440 88.884849 L 115.979421 88.996828 L 116.168856 88.666827 L 116.877288 88.456886 L 117.060237 87.957350 L 117.310911 88.142498 L 118.274416 88.246837 L 118.651858 87.553192 L 118.929745 87.876046 L 119.423289 87.700079 L 119.680946 87.893968 L 119.970705 87.772533 L 120.168058 88.022768 L 120.406638 87.797711 L 121.023431 87.829649 L 121.160422 88.407400 L 121.317589 88.311154 L 121.794367 88.559685 L 122.038280 88.396692 L 122.421824 88.550615 L 123.014208 88.162399 L 123.023169 87.901938 L 124.111901 88.412084 L 124.374451 87.559624 L 125.772624 87.311423 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e341' d='M 113.926909 98.122773 L 114.670677 98.293342 L 114.504121 98.453939 L 114.601488 98.899569 L 115.052858 99.407702 L 115.383528 99.308048 L 115.588588 99.572180 L 115.922876 99.603350 L 116.015208 99.172420 L 115.882394 98.770790 L 116.549618 98.982743 L 116.799447 98.743633 L 117.121190 99.406328 L 117.042535 99.696562 L 117.540544 99.574567 L 117.393073 99.819525 L 117.478391 100.071947 L 116.536304 100.170261 L 116.731863 100.538105 L 117.299082 100.548516 L 117.334022 101.039740 L 117.141035 101.055825 L 117.077894 101.254968 L 116.652703 101.277859 L 116.446633 101.009681 L 116.253811 101.078440 L 116.425083 101.546444 L 115.873071 101.913233 L 116.275118 102.483760 L 116.263025 102.874989 L 116.062979 103.050077 L 115.356196 102.773014 L 115.150720 102.452909 L 115.035376 102.563822 L 114.779468 102.292224 L 114.574453 102.315906 L 114.652701 102.094027 L 114.416000 101.942027 L 114.149361 102.153210 L 113.881688 101.666735 L 113.566519 101.923963 L 113.454683 101.741564 L 113.258189 101.934199 L 113.109576 101.389025 L 112.870776 101.362913 L 112.865278 101.170618 L 112.452104 100.921373 L 112.682615 100.808404 L 112.368216 100.270882 L 111.725718 100.449290 L 111.849131 99.635960 L 112.433721 99.299033 L 113.103529 99.562726 L 113.177115 99.775854 L 113.651100 99.772423 L 113.673155 99.161315 L 113.381031 98.961600 L 113.789081 98.763049 L 113.670352 98.395273 L 113.841470 97.981010 L 113.926909 98.122773 Z ' fill='#302446' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.78'/>\n <path id='svg_3c9aaa3e0504a623_e342' d='M 117.571218 98.762423 L 117.775507 98.800794 L 117.698908 99.022674 L 117.985569 99.054822 L 117.981534 99.334743 L 118.270909 99.373333 L 118.315096 99.613597 L 118.847473 99.673341 L 118.541957 99.925709 L 119.182102 100.348910 L 119.080403 100.602257 L 119.493830 100.749793 L 119.842719 100.643750 L 119.572012 100.919427 L 119.800434 101.475387 L 119.595024 101.878556 L 120.650607 101.542673 L 120.895422 101.848453 L 121.552707 102.108561 L 121.675901 102.619939 L 121.814091 102.788275 L 121.971499 102.720923 L 121.337105 103.531087 L 121.356488 103.930441 L 121.020583 103.984765 L 121.295491 104.587221 L 121.296535 105.145577 L 120.908868 106.041465 L 121.124526 106.424504 L 120.621967 106.747533 L 120.637853 107.440738 L 120.399877 107.470148 L 120.170367 107.882004 L 119.679406 107.481802 L 119.692248 106.991458 L 119.398881 106.840933 L 118.920729 105.978137 L 118.439499 105.777433 L 117.920778 105.829051 L 117.600397 105.592174 L 117.545754 105.351944 L 118.033526 104.574522 L 117.485175 104.126770 L 117.185189 104.421424 L 116.728587 104.344407 L 116.195133 104.602558 L 116.066497 104.453252 L 116.551851 103.945779 L 116.345989 103.816560 L 116.083319 103.081796 L 116.263025 102.874989 L 116.261012 102.413593 L 115.873609 101.909978 L 116.425083 101.546444 L 116.229227 101.317164 L 116.280484 101.047458 L 116.450899 101.012320 L 116.652703 101.277859 L 117.077894 101.254968 L 117.141035 101.055825 L 117.334022 101.039740 L 117.299082 100.548516 L 116.731863 100.538105 L 116.536304 100.170261 L 117.478391 100.071947 L 117.393073 99.819525 L 117.538839 99.571048 L 117.042535 99.696562 L 117.121190 99.406328 L 116.858488 99.037517 L 117.571218 98.762423 Z ' fill='#34274D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2020&amp;lt;br/&amp;gt;Items per Head: 18.49'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c6)'>\n <path id='svg_3c9aaa3e0504a623_e343' d='M 109.086352 198.831326 L 109.765538 199.385010 L 109.961515 200.248190 L 109.779182 200.581444 L 110.238632 200.955467 L 109.925871 201.206780 L 110.243430 201.481827 L 110.183440 202.153815 L 109.957766 202.347494 L 108.966263 202.310869 L 108.314536 201.436697 L 108.425493 200.820103 L 108.117295 199.916430 L 108.352742 199.324705 L 109.086352 198.831326 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_3c9aaa3e0504a623_e344' d='M 111.334060 198.766040 L 111.203193 199.070930 L 111.122680 198.920811 L 111.334060 198.766040 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_3c9aaa3e0504a623_e345' d='M 111.601194 198.066602 L 111.595652 198.558892 L 111.280714 198.676083 L 111.418058 198.161595 L 111.601194 198.066602 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_3c9aaa3e0504a623_e346' d='M 112.371678 196.917949 L 112.682615 197.416276 L 112.452104 197.529245 L 112.865278 197.778490 L 112.870776 197.970785 L 113.109576 197.996897 L 113.258189 198.542071 L 113.454683 198.349436 L 113.566519 198.531835 L 113.881688 198.274607 L 114.149361 198.761082 L 114.416000 198.549899 L 114.652701 198.701899 L 114.574453 198.923778 L 114.779468 198.900096 L 115.035376 199.171694 L 115.150720 199.060781 L 115.547665 199.499298 L 116.083319 199.629934 L 116.345989 200.424432 L 116.551851 200.553651 L 116.066497 201.061124 L 116.186557 201.207626 L 116.728587 200.952279 L 117.185189 201.029296 L 117.485175 200.734642 L 118.033526 201.182394 L 118.031877 201.369410 L 117.545754 201.959816 L 117.809898 202.315159 L 117.589238 202.516194 L 117.687254 202.647414 L 117.063645 202.929785 L 116.931886 203.452598 L 117.076948 203.674686 L 116.844084 204.300439 L 116.638047 204.487896 L 116.247774 204.053536 L 115.558165 204.126561 L 115.125586 204.754514 L 114.653756 206.138064 L 114.521899 206.204295 L 114.421387 205.791847 L 114.252292 206.010857 L 113.649791 205.926749 L 112.939106 206.433542 L 112.942899 206.747599 L 113.164659 206.909659 L 113.118866 207.213218 L 112.540555 207.360764 L 112.360629 207.233722 L 112.017656 207.419255 L 111.931569 207.252413 L 111.351552 207.296061 L 111.291193 207.024552 L 111.095160 206.950888 L 110.714475 207.604623 L 110.236598 207.754131 L 110.177800 207.092421 L 110.652730 205.980754 L 111.605922 204.995304 L 111.805609 204.288963 L 111.741638 203.833085 L 112.262997 203.386847 L 112.498223 202.664063 L 113.187060 202.342541 L 113.400227 201.777535 L 112.979742 201.142577 L 113.178735 201.078269 L 113.036375 200.550407 L 112.511013 200.121906 L 112.077493 200.008540 L 111.958883 199.631310 L 111.538613 199.212781 L 111.561942 198.834363 L 111.927080 198.311263 L 111.720330 197.758591 L 111.734634 197.072466 L 112.371678 196.917949 Z ' fill='#0F080D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.21'/>\n <path id='svg_3c9aaa3e0504a623_e347' d='M 125.594942 206.827607 L 125.281168 206.024325 L 125.577141 205.261030 L 125.174467 205.251345 L 125.433828 204.936912 L 125.342353 204.681069 L 124.899384 204.592399 L 124.659373 204.848187 L 124.331297 204.813477 L 123.934175 203.827675 L 123.760022 203.725097 L 123.427933 203.878085 L 123.135203 203.513947 L 122.611161 203.918457 L 122.424705 203.842474 L 122.544468 203.287405 L 122.951540 202.857574 L 122.469155 202.662201 L 122.189895 203.051187 L 121.367669 203.141728 L 120.923710 202.746200 L 121.042396 202.075863 L 121.296919 201.745423 L 121.295491 201.195093 L 121.020583 200.592637 L 121.356488 200.538313 L 121.337105 200.138959 L 121.966288 199.400094 L 121.675901 199.227811 L 121.477505 198.610226 L 121.791288 198.170830 L 122.184837 198.013498 L 122.344148 198.397526 L 122.694884 198.363455 L 122.827884 198.622397 L 123.449097 198.310395 L 123.832201 199.434595 L 124.076169 199.295020 L 123.999702 199.110312 L 124.198098 198.836329 L 125.061080 198.124609 L 125.226031 198.442318 L 125.621339 198.069032 L 125.827871 198.150435 L 126.266168 197.829451 L 126.520691 198.029441 L 127.009507 197.809715 L 127.450882 198.033894 L 127.614700 197.828186 L 127.796220 197.907951 L 127.951737 197.533863 L 127.697324 197.257901 L 127.806609 197.021628 L 128.148100 197.019265 L 128.406196 197.358390 L 129.122389 196.600890 L 129.361587 196.782475 L 130.080342 196.771580 L 130.671287 196.966765 L 130.706931 197.274381 L 131.087561 197.501835 L 131.388097 198.258896 L 131.023254 198.486318 L 131.026124 198.865716 L 130.804870 199.150079 L 130.397754 199.393179 L 130.461534 199.549994 L 129.898724 200.207686 L 129.994970 200.343941 L 129.501008 200.268574 L 129.290408 200.449631 L 129.480393 200.490794 L 129.615098 201.085686 L 129.950255 201.388959 L 130.217696 202.373112 L 130.466404 202.458022 L 130.007668 202.945574 L 129.803797 202.889733 L 129.280414 203.190037 L 129.264747 203.691849 L 128.975162 203.910871 L 128.302957 203.838582 L 127.987228 204.224126 L 127.716455 204.285586 L 127.097529 204.987597 L 127.342948 205.147776 L 127.200811 205.433282 L 126.952973 205.456887 L 126.691084 206.046172 L 125.831004 206.463777 L 125.594942 206.827607 Z ' fill='#2B203D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 19.15'/>\n <path id='svg_3c9aaa3e0504a623_e348' d='M 117.889718 202.392770 L 118.920729 202.586009 L 119.398881 203.448805 L 119.692248 203.599330 L 119.679406 204.089674 L 120.138208 204.497187 L 120.316868 204.440488 L 120.399877 204.078020 L 120.637853 204.048610 L 120.610587 203.390478 L 120.825420 203.188344 L 121.123866 203.032441 L 122.189895 203.051187 L 122.469155 202.662201 L 122.951540 202.857574 L 122.544468 203.287405 L 122.412314 203.828565 L 122.611161 203.918457 L 123.135203 203.513947 L 123.427933 203.878085 L 123.760022 203.725097 L 123.934175 203.827675 L 124.331297 204.813477 L 124.659373 204.848187 L 124.899384 204.592399 L 125.342353 204.681069 L 125.433828 204.936912 L 125.174467 205.251345 L 125.577141 205.261030 L 125.281168 206.024325 L 125.601395 206.820361 L 124.883255 207.540986 L 124.235315 207.488729 L 124.408347 207.690973 L 124.273477 208.153128 L 123.535719 208.706127 L 122.514794 208.550558 L 121.996376 208.691832 L 121.659574 209.039077 L 121.332872 209.102240 L 121.395213 208.962904 L 121.201487 209.020441 L 121.283860 208.753652 L 121.097195 209.141369 L 120.695377 209.273557 L 120.096208 209.958329 L 119.677812 209.829748 L 119.267276 209.955581 L 119.355288 209.776150 L 119.215068 209.761824 L 117.628302 210.822432 L 117.137291 210.795994 L 116.894897 210.420809 L 116.816984 210.839090 L 116.576413 210.612430 L 116.396376 210.677431 L 115.748149 209.953914 L 115.209622 209.786103 L 115.309924 209.947294 L 114.772777 209.458398 L 115.075891 210.371019 L 114.877880 211.076494 L 114.986879 211.449417 L 114.653442 211.849833 L 113.625517 211.300077 L 113.227250 210.626554 L 112.472237 209.990165 L 112.044889 209.894341 L 111.706016 209.585336 L 111.368374 209.644656 L 110.759069 210.183838 L 111.051457 211.410507 L 111.316095 211.651386 L 111.208855 212.168854 L 111.375191 212.217945 L 110.881647 212.121369 L 110.587477 211.846627 L 110.550030 211.541364 L 110.724579 211.419721 L 110.660404 211.065422 L 110.433774 210.982260 L 110.385472 210.513110 L 109.398882 209.395597 L 109.164468 208.699644 L 109.329145 207.678914 L 109.861073 207.494505 L 110.177146 208.094715 L 109.984924 208.177715 L 109.990167 208.498403 L 110.277971 208.875996 L 110.536974 208.642772 L 110.236598 207.754131 L 110.714475 207.604623 L 111.021552 206.970293 L 111.248644 206.981068 L 111.351552 207.296061 L 111.931569 207.252413 L 112.017656 207.419255 L 112.360629 207.233722 L 112.540555 207.360764 L 113.118866 207.213218 L 112.978302 206.368014 L 113.649791 205.926749 L 114.252292 206.010857 L 114.418528 205.791847 L 114.521899 206.204295 L 114.653756 206.138064 L 115.125586 204.754514 L 115.553548 204.130959 L 116.247774 204.053536 L 116.678287 204.478881 L 117.076948 203.674686 L 116.931886 203.452598 L 117.063645 202.929785 L 117.889718 202.392770 Z ' fill='#1A131E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 20.47'/>\n <path id='svg_3c9aaa3e0504a623_e349' d='M 115.832589 189.144165 L 116.061935 189.880798 L 117.039677 189.480872 L 117.344335 189.758868 L 117.400792 190.042417 L 117.157703 190.051102 L 116.978437 190.278250 L 116.697307 190.112562 L 116.707422 190.983932 L 116.406723 191.002458 L 116.406558 191.678237 L 116.731281 191.994768 L 117.238623 192.304045 L 117.472146 192.192890 L 117.743183 192.455747 L 117.965031 192.390957 L 118.390760 192.977624 L 118.663095 192.910722 L 118.844428 193.156175 L 119.025012 193.020117 L 119.088671 193.393437 L 119.474303 193.139023 L 119.765988 193.491453 L 120.242655 193.508385 L 120.580385 193.308527 L 120.880194 193.442098 L 120.740355 193.711806 L 120.364353 193.865751 L 120.489141 194.217069 L 120.243810 194.311996 L 120.480335 194.471273 L 119.891699 194.529896 L 119.664310 194.932911 L 119.962845 195.327900 L 121.324725 195.774927 L 121.250820 195.914656 L 121.032556 196.010099 L 120.645208 195.865829 L 120.166386 196.483809 L 119.671171 196.622670 L 119.463968 196.926724 L 119.093519 197.069389 L 119.181244 196.955815 L 118.541957 196.533581 L 118.847473 196.281213 L 118.330147 196.229660 L 118.270909 195.981205 L 117.998619 195.969265 L 117.985569 195.662694 L 117.698908 195.630546 L 117.775507 195.408666 L 117.253575 195.400046 L 116.970687 195.651271 L 116.799447 195.351505 L 116.549618 195.590615 L 115.919776 195.363545 L 116.020276 196.121826 L 115.617437 196.195489 L 115.383528 195.915920 L 115.052858 196.015574 L 114.835331 195.606744 L 114.676955 195.623235 L 114.504121 195.061811 L 114.669720 194.900269 L 113.879137 194.702114 L 113.906822 194.264818 L 113.573270 194.112039 L 113.230384 193.145499 L 113.255858 192.236153 L 113.509611 192.163920 L 113.369212 191.953924 L 113.541386 191.665483 L 112.676865 191.609147 L 112.704593 191.363738 L 112.234028 191.017246 L 112.547976 190.453832 L 113.086762 190.271653 L 113.148277 189.963367 L 113.558922 189.973646 L 114.015261 189.532051 L 114.507199 189.460478 L 114.655626 189.240422 L 114.856551 189.373840 L 115.627981 188.983865 L 115.832589 189.144165 Z ' fill='#21192B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 19.91'/>\n <path id='svg_3c9aaa3e0504a623_e350' d='M 122.810491 174.735540 L 123.248524 174.759727 L 123.909943 175.219463 L 124.870875 175.529553 L 126.056909 175.022079 L 126.203609 175.198452 L 126.426918 175.104746 L 126.756677 175.329134 L 126.935701 175.213163 L 127.852952 175.332234 L 128.263762 175.550112 L 129.339103 175.502924 L 129.670632 175.183005 L 130.357426 175.492149 L 130.842559 175.129485 L 131.592056 175.160423 L 131.705948 175.399169 L 132.005725 175.327309 L 132.417535 175.960087 L 132.809600 176.197030 L 132.902658 177.237430 L 133.169341 177.558558 L 132.996221 177.567343 L 132.972088 177.798074 L 133.126099 177.963068 L 132.558991 178.732630 L 132.548941 178.972234 L 131.786648 179.781705 L 131.341040 180.753291 L 131.130088 181.518575 L 131.323086 181.533550 L 131.496458 182.186756 L 131.353991 182.447283 L 131.130363 182.446832 L 130.250252 184.108158 L 130.301519 184.830311 L 130.058562 185.399178 L 129.515279 186.171367 L 128.735096 186.731937 L 128.509083 186.795131 L 128.054679 186.330624 L 127.477203 186.347775 L 127.119375 185.624424 L 127.187618 185.093400 L 127.019677 184.732559 L 126.501670 184.179810 L 126.104438 184.148750 L 126.048806 183.963603 L 125.654322 183.838705 L 125.239004 184.077945 L 124.757060 183.997850 L 124.374451 184.167496 L 124.109593 185.020341 L 123.023169 184.509810 L 123.014208 184.770271 L 122.436117 185.154088 L 122.038280 185.004564 L 121.794367 185.167557 L 121.317589 184.919026 L 121.160422 185.015272 L 121.023431 184.437521 L 120.406638 184.405583 L 120.168058 184.630640 L 119.970705 184.380405 L 119.682539 184.501949 L 119.578696 184.377216 L 119.938877 183.651028 L 119.891765 183.102621 L 120.064104 182.875035 L 119.954929 182.632991 L 120.187957 182.605779 L 120.600032 182.163965 L 120.845595 182.215748 L 121.403808 181.553933 L 121.963518 181.448332 L 122.125687 180.883323 L 121.903146 180.688280 L 122.010849 180.175583 L 121.721363 179.876389 L 122.458931 178.864070 L 122.288296 178.434019 L 121.907720 178.306263 L 121.704596 177.968072 L 120.658875 178.341973 L 120.392345 178.236502 L 120.482072 177.210175 L 120.277695 177.101989 L 120.355646 176.632105 L 120.033650 175.799237 L 120.893850 175.394980 L 121.572959 175.466334 L 121.801403 175.254844 L 121.798083 174.979728 L 122.810491 174.735540 Z ' fill='#3B518B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.77'/>\n <path id='svg_3c9aaa3e0504a623_e351' d='M 110.871218 171.628755 L 110.838823 171.509066 L 110.092131 171.209081 L 109.787780 170.588253 L 109.413867 170.509236 L 109.473050 170.274470 L 109.192889 169.959080 L 109.430920 169.608059 L 109.841334 170.104076 L 109.978667 169.946415 L 110.207628 170.160259 L 110.445164 169.710363 L 110.227803 169.486679 L 110.492935 169.482721 L 110.260016 169.277453 L 110.646969 169.168465 L 110.205979 169.053221 L 110.412896 168.917438 L 110.196381 168.973169 L 110.254189 168.801116 L 109.642729 168.044528 L 109.846128 167.688195 L 110.262601 168.188942 L 110.694520 167.915012 L 110.458413 167.805288 L 110.579396 167.677289 L 110.701117 167.920180 L 111.096095 167.904678 L 111.226874 168.146337 L 111.200268 167.823428 L 111.473537 167.945083 L 111.405426 167.739815 L 111.567870 167.706886 L 111.890888 168.011214 L 112.214733 167.922654 L 112.655788 168.438373 L 112.292464 167.976417 L 112.759510 167.928426 L 111.898090 167.877466 L 111.567210 167.559340 L 111.410263 167.605792 L 111.459849 167.085366 L 111.246335 167.100044 L 111.103516 166.695446 L 111.316777 166.679283 L 111.187954 166.562687 L 111.431592 165.954360 L 112.202968 166.428795 L 111.884347 166.100203 L 112.138925 166.019888 L 111.736801 166.039018 L 111.614487 165.931437 L 111.885556 165.940342 L 111.600413 165.765914 L 111.890394 165.491820 L 112.153804 165.547728 L 111.867636 165.428108 L 112.016677 165.355807 L 111.580184 165.014988 L 111.744002 164.540080 L 112.110010 164.343498 L 112.338311 163.973532 L 112.420055 163.384886 L 112.736862 163.586910 L 113.248778 163.548715 L 113.577118 163.798224 L 113.588167 164.215412 L 113.785739 164.433708 L 113.517770 164.699511 L 113.750612 164.505887 L 113.600481 164.845530 L 113.832356 164.411191 L 113.606363 164.170169 L 113.913990 163.996071 L 113.778263 163.751608 L 113.938563 163.702132 L 114.123667 164.160945 L 114.643037 164.394843 L 113.951152 165.591233 L 114.538259 165.227237 L 114.701527 164.768931 L 114.855231 164.737432 L 114.829998 164.911277 L 115.117560 164.060060 L 115.635182 164.114482 L 115.906087 164.484030 L 116.028566 164.382308 L 116.119820 164.771405 L 116.333444 164.575318 L 116.211350 164.994099 L 116.102916 165.043127 L 116.115115 165.137027 L 116.530191 164.641559 L 116.880531 164.561244 L 117.211796 164.787896 L 117.279138 164.652499 L 117.443869 164.722985 L 117.449058 164.492858 L 117.690717 164.627156 L 118.019619 164.287866 L 118.361108 164.488241 L 118.718155 163.916196 L 118.797063 164.386597 L 119.247849 164.273617 L 119.380070 164.450299 L 120.233629 164.394568 L 121.062352 163.710995 L 121.811958 163.734347 L 121.714942 163.909863 L 121.870866 164.041512 L 122.295782 163.871294 L 122.860923 164.092482 L 122.980456 163.842643 L 122.594636 163.534500 L 122.835636 163.152516 L 123.261388 163.511609 L 124.034610 163.319414 L 124.206257 163.591429 L 125.082333 163.548484 L 124.951707 164.122541 L 124.762832 164.175854 L 124.797465 164.513485 L 124.384565 165.047587 L 124.441209 165.539064 L 124.902506 165.641214 L 124.492070 166.872974 L 123.747411 167.670638 L 122.645640 168.138696 L 121.862258 169.263380 L 120.534208 170.339106 L 119.915206 170.636739 L 119.643861 171.269242 L 118.729710 171.663891 L 118.495417 172.773996 L 118.527785 172.995140 L 118.562638 172.861337 L 118.831069 172.980902 L 117.835856 173.119851 L 117.188477 172.795139 L 116.723178 172.944214 L 116.379797 172.681862 L 116.674197 172.964696 L 117.337287 172.919652 L 117.559421 173.268838 L 117.672147 173.151163 L 118.360559 173.312002 L 118.251053 173.394516 L 118.951294 173.055060 L 119.470511 173.417055 L 119.787207 173.028013 L 120.062301 172.953537 L 118.681873 175.025003 L 118.277836 175.016340 L 118.242313 174.734089 L 118.086410 174.686702 L 117.451246 175.095237 L 116.710765 175.155288 L 115.822650 176.171479 L 117.091494 175.218463 L 117.480172 175.199761 L 117.735784 175.394353 L 118.264148 175.139478 L 118.547740 175.232634 L 117.817198 176.068152 L 117.873359 176.478765 L 117.366895 176.549833 L 116.897595 177.348233 L 115.832578 177.326013 L 116.425798 177.382998 L 115.977387 177.499121 L 116.570903 177.536987 L 116.980504 177.363405 L 117.279951 177.463467 L 118.132873 176.689321 L 117.960666 176.373393 L 118.292107 176.127742 L 119.326449 176.318970 L 120.031725 175.815234 L 120.355646 176.632105 L 120.277695 177.101989 L 120.482072 177.210175 L 120.392345 178.236502 L 120.658875 178.341973 L 121.703992 177.967907 L 121.842853 178.253764 L 122.343873 178.514939 L 122.417536 179.040752 L 121.707565 179.967589 L 122.010849 180.175583 L 121.903146 180.688280 L 122.125687 180.883323 L 122.064777 181.237094 L 121.962143 181.449376 L 121.385645 181.567875 L 120.823056 182.231416 L 120.600032 182.163965 L 120.187957 182.605779 L 119.954929 182.632991 L 120.064104 182.875035 L 119.891765 183.102621 L 119.938877 183.651028 L 119.563634 184.342034 L 118.936561 184.485787 L 118.570609 184.177171 L 118.439554 184.759221 L 118.066620 184.877247 L 117.991803 184.719069 L 117.475720 184.786158 L 117.060237 184.565222 L 116.877288 185.064758 L 116.168856 185.274699 L 115.979421 185.604700 L 115.689440 185.492721 L 115.210684 186.191422 L 114.696415 185.787922 L 114.505055 186.183781 L 114.209907 186.325664 L 114.164610 187.141074 L 113.714605 187.349749 L 113.311655 187.311323 L 113.309292 187.730984 L 113.653750 187.775512 L 113.892276 187.598281 L 113.840052 187.986167 L 114.325515 188.623135 L 114.059998 188.564643 L 113.395598 188.851491 L 113.674584 189.252956 L 113.433475 189.595490 L 113.745664 189.785365 L 113.558922 189.973646 L 113.146353 189.964686 L 113.086762 190.271653 L 112.547976 190.453832 L 112.233698 191.019060 L 112.704593 191.363738 L 112.676865 191.609147 L 113.541386 191.665483 L 113.369212 191.953924 L 113.509611 192.163920 L 113.255858 192.236153 L 113.230109 193.140981 L 113.573270 194.112039 L 113.914342 194.298505 L 113.661775 195.051190 L 113.789081 195.370921 L 113.381031 195.569472 L 113.673155 195.769187 L 113.651100 196.380295 L 113.258497 196.354007 L 113.172740 196.182636 L 113.463006 196.187617 L 113.071436 195.990716 L 112.958126 195.603654 L 112.488820 195.407842 L 112.240355 194.597385 L 112.259375 195.136398 L 112.649466 195.715666 L 112.147956 195.758856 L 111.965716 195.381825 L 111.899571 194.830977 L 112.844200 193.085458 L 112.047570 194.326879 L 111.879155 194.205979 L 111.808716 193.468876 L 111.704784 193.519434 L 111.732271 194.163295 L 111.956051 194.488729 L 111.682202 194.927403 L 111.749738 195.735744 L 111.367105 195.649669 L 111.665820 195.945012 L 111.122141 197.212796 L 110.668859 197.072104 L 110.550822 196.078023 L 110.188167 195.395923 L 110.468308 196.732252 L 109.786208 196.273836 L 109.747727 195.932401 L 109.335652 196.728360 L 109.574178 197.540514 L 108.819735 197.214032 L 108.840586 196.933413 L 108.568730 196.643197 L 108.757286 195.929103 L 108.641898 195.268167 L 108.895157 195.262780 L 109.729125 193.872520 L 110.443174 193.558956 L 110.744820 192.947169 L 111.689871 192.257955 L 110.902261 192.632561 L 110.808303 192.485218 L 110.338243 193.384256 L 109.503989 193.863958 L 109.041824 194.628781 L 108.785787 194.600694 L 108.695002 195.127767 L 108.307995 195.410546 L 108.004301 195.111549 L 107.949573 195.712895 L 108.261433 196.962258 L 108.121912 197.043771 L 108.327840 197.066816 L 108.618480 197.509675 L 108.750854 198.156812 L 108.192827 198.439261 L 107.794331 198.937148 L 107.523756 199.717484 L 107.651251 200.552917 L 107.406719 200.600509 L 107.401716 201.103838 L 106.924334 202.246883 L 106.546338 202.332715 L 106.709919 202.485552 L 106.999702 202.318238 L 106.891516 202.437143 L 107.096454 203.158494 L 106.468568 203.783807 L 105.896622 203.743556 L 105.348105 203.945866 L 105.073132 203.732243 L 105.109359 203.006220 L 105.219249 202.625480 L 105.771859 202.073679 L 105.854733 200.477590 L 106.194518 199.778284 L 106.201555 199.166384 L 106.624019 198.834734 L 106.981781 198.164783 L 107.626610 197.741550 L 107.940778 197.133442 L 106.810706 198.259996 L 106.670251 198.222010 L 106.751139 197.814039 L 106.526333 197.904818 L 106.360206 197.746827 L 106.402754 197.155376 L 107.007838 196.183186 L 106.828957 196.175875 L 106.320680 196.674806 L 106.272634 196.279388 L 107.161376 195.051190 L 106.959682 195.122160 L 107.190364 194.818343 L 106.889922 195.014963 L 107.125534 194.676442 L 106.782578 195.002940 L 106.861611 195.105668 L 106.590596 195.503175 L 106.696308 195.140961 L 106.565858 195.319621 L 106.245478 196.118923 L 106.144383 196.056914 L 106.328596 195.743185 L 106.113818 195.895679 L 106.746718 194.653794 L 107.102501 194.188615 L 107.391876 194.177786 L 107.223385 193.929529 L 107.709673 193.069813 L 107.562077 193.043057 L 106.977548 193.722008 L 106.996513 193.377550 L 107.441649 192.668412 L 107.316889 192.419917 L 107.870038 192.210089 L 107.757225 192.046644 L 107.104919 192.247643 L 107.297873 191.247416 L 107.507209 191.057376 L 107.694692 191.175926 L 108.191601 190.941862 L 107.866676 190.924791 L 107.698998 191.117936 L 107.584830 190.935282 L 107.769648 190.502661 L 108.060100 190.307609 L 108.004462 190.013415 L 108.304531 189.793823 L 109.483309 189.821867 L 109.684642 190.090149 L 110.503327 189.490519 L 110.903372 188.596012 L 110.051472 189.808937 L 109.727002 189.973899 L 109.557731 189.755416 L 108.960036 189.633235 L 108.487975 189.762771 L 108.455717 189.327488 L 108.190244 189.562616 L 108.243193 189.404042 L 108.087280 189.481916 L 108.532261 188.821849 L 108.740112 189.139613 L 109.786065 188.539423 L 109.179002 188.707815 L 108.848034 188.989670 L 108.668428 188.742195 L 108.513208 188.790526 L 108.930823 188.010575 L 109.367240 187.622930 L 109.263033 187.408680 L 109.915427 187.036879 L 110.421098 187.181269 L 111.635343 186.776649 L 110.319662 187.081384 L 110.172973 186.893839 L 109.741175 186.852270 L 110.749493 185.254942 L 110.218072 184.995064 L 109.309155 184.906877 L 110.693805 185.283384 L 109.899507 186.159263 L 109.719273 186.479874 L 109.802744 186.627080 L 109.510136 186.865606 L 109.354068 186.753572 L 108.209759 187.839061 L 107.878164 187.799590 L 108.055209 187.935670 L 107.646004 188.561533 L 106.677177 189.201061 L 106.115083 188.735114 L 106.275822 188.392338 L 106.035318 188.737400 L 105.226725 188.458107 L 104.630713 187.592893 L 104.624116 187.215286 L 105.174996 187.214352 L 105.274827 187.158115 L 104.994191 187.129310 L 105.157735 187.002653 L 105.766556 187.601909 L 105.495157 187.167241 L 106.398742 186.674191 L 106.969082 187.016285 L 107.749968 186.919699 L 106.942200 186.971868 L 106.597577 186.587994 L 106.204413 186.502666 L 105.756497 187.002598 L 105.035091 186.787050 L 104.846261 186.952573 L 104.235867 186.649849 L 103.443470 186.683867 L 103.181360 186.377504 L 103.189166 186.167563 L 103.485358 186.075869 L 103.442096 185.870107 L 103.762146 185.780226 L 104.862147 185.764394 L 104.992103 185.577323 L 105.308250 185.984945 L 105.600319 185.957459 L 105.511979 185.602500 L 106.150650 185.548517 L 105.511649 185.537577 L 105.589984 185.284869 L 105.901459 185.429611 L 105.657216 185.304659 L 105.752758 185.026882 L 106.679377 184.949591 L 106.988014 184.634367 L 106.906919 184.523289 L 106.636003 184.878951 L 106.221268 184.725984 L 106.663050 184.439060 L 106.592959 184.309105 L 105.573053 184.518001 L 105.335077 184.307346 L 105.552988 184.124287 L 105.833293 184.217246 L 105.505327 183.944802 L 105.807203 183.705022 L 106.114379 182.849836 L 106.741517 182.811145 L 106.851221 183.151107 L 107.322446 183.434107 L 108.089259 183.175317 L 107.418154 183.301512 L 107.156539 183.123456 L 107.042196 182.596412 L 106.661302 182.690074 L 106.518197 182.436519 L 106.395828 182.482861 L 106.302759 182.211680 L 106.840446 181.590656 L 107.358486 181.499357 L 107.708848 181.625893 L 108.163901 182.114291 L 108.193487 181.906198 L 109.034457 181.820826 L 108.122077 181.862935 L 107.908553 181.463074 L 107.268133 181.318431 L 107.026088 181.012014 L 107.531584 180.474096 L 107.379430 180.146229 L 107.758500 179.906185 L 108.216960 179.786730 L 108.786091 180.492193 L 108.999122 180.385513 L 108.303487 179.757815 L 108.685128 179.299518 L 108.252747 179.767654 L 106.871132 179.577878 L 106.985354 179.179118 L 107.256720 179.066567 L 107.226200 178.875878 L 108.233616 178.785788 L 108.815359 178.143697 L 108.130059 178.720602 L 107.578068 178.589151 L 107.811691 178.336233 L 107.727166 178.142785 L 106.840105 178.743503 L 106.555039 178.781379 L 106.440246 178.438472 L 106.334039 178.567273 L 106.421225 177.711899 L 106.186009 177.582559 L 106.080780 177.192848 L 106.400721 175.898133 L 106.571686 175.839422 L 106.992115 176.378924 L 107.223000 176.438953 L 107.222946 176.240722 L 107.270771 176.535266 L 107.580158 176.819694 L 107.564600 176.390138 L 107.773606 176.701393 L 107.770802 176.564566 L 108.350246 176.613140 L 108.439313 176.449816 L 108.003942 176.280159 L 107.478843 176.386180 L 106.959957 175.405633 L 106.556623 175.189261 L 106.786409 174.485843 L 107.133285 174.369620 L 107.469102 174.614820 L 107.553661 174.479125 L 107.417406 174.134964 L 106.671955 173.835122 L 106.739352 172.505993 L 107.513421 172.381481 L 107.665266 173.288891 L 108.053878 173.723021 L 107.945066 173.415680 L 108.223062 173.411612 L 108.111797 173.275006 L 108.233969 172.865833 L 107.851447 172.610332 L 107.781687 172.184899 L 108.056770 171.770900 L 108.424789 171.871379 L 108.556680 172.489403 L 108.991799 172.691692 L 109.325098 172.022730 L 110.024624 172.651176 L 110.530943 172.843932 L 109.857903 172.082870 L 109.511862 171.992858 L 109.455383 171.758312 L 109.718316 171.672444 L 109.937646 171.991528 L 110.519212 171.978477 L 111.227952 172.536031 L 111.566275 173.136486 L 111.380919 172.580097 L 110.624771 171.890949 L 110.871218 171.628755 Z M 115.921224 165.125278 L 115.880525 165.143679 L 115.924825 165.364120 L 115.926152 165.361425 L 116.079746 165.395069 L 115.917411 165.127738 L 115.921224 165.125278 Z M 112.175747 165.556900 L 112.404684 165.869483 L 112.421825 165.659762 L 112.175747 165.556900 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e352' d='M 124.503208 162.880578 L 124.569240 163.200618 L 124.368414 163.289410 L 124.503208 162.880578 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e353' d='M 116.537393 164.316891 L 116.725234 164.344158 L 116.658222 164.501214 L 116.537393 164.316891 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e354' d='M 111.184105 166.217349 L 111.226765 166.422562 L 111.053326 166.441583 L 110.986919 166.302666 L 111.184105 166.217349 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e355' d='M 109.750531 196.366960 L 110.448627 196.928340 L 110.372414 197.150429 L 110.552163 197.203939 L 110.568919 197.460750 L 110.797495 197.414363 L 110.925053 198.323566 L 110.745205 198.497092 L 110.882197 198.813053 L 110.706284 198.908133 L 110.465064 198.415073 L 110.250506 198.198317 L 110.095879 198.255520 L 110.042655 197.374112 L 109.519536 196.838625 L 109.469785 196.644901 L 109.750531 196.366960 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e356' d='M 109.480945 170.625327 L 109.639981 170.826251 L 109.542239 170.920859 L 109.388536 170.846701 L 109.480945 170.625327 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e357' d='M 108.794777 171.272573 L 108.868111 171.405608 L 108.719739 171.436447 L 108.794777 171.272573 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e358' d='M 108.465491 188.511266 L 107.883112 189.255374 L 107.238337 189.677509 L 107.440252 189.277803 L 107.287814 189.302266 L 107.714576 189.123396 L 108.169134 188.527702 L 108.465491 188.511266 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e359' d='M 107.908036 172.701443 L 108.093601 173.039832 L 107.861397 172.878764 L 107.908036 172.701443 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e360' d='M 107.899658 190.148240 L 107.503581 190.769870 L 107.251421 190.663608 L 107.445310 190.330199 L 107.899658 190.148240 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e361' d='M 103.111161 174.132798 L 103.477883 174.161890 L 103.430771 174.353282 L 103.759342 174.598361 L 103.827860 175.025784 L 104.107593 175.100041 L 104.434174 175.690568 L 104.260802 177.615477 L 103.884075 177.851463 L 104.373386 178.048936 L 104.217847 178.340819 L 104.511081 178.942394 L 104.108517 179.214806 L 104.359324 179.047360 L 104.761162 179.072471 L 104.854397 179.332491 L 104.613726 179.611257 L 104.977920 179.402251 L 105.612798 179.743192 L 105.766281 180.030446 L 106.739462 179.667879 L 107.021251 179.720763 L 106.888052 179.847035 L 107.434151 179.943841 L 107.252246 180.510719 L 106.596093 180.950335 L 106.359195 180.877628 L 106.337909 181.195304 L 106.476033 181.256972 L 106.297702 181.527656 L 105.963589 181.667485 L 105.446341 182.441785 L 104.915251 182.691261 L 104.682497 182.334159 L 104.965694 182.029908 L 104.998590 181.426177 L 106.049390 180.726717 L 105.071043 180.897429 L 104.844347 180.191547 L 104.855902 180.659793 L 104.448368 181.376702 L 104.253491 181.206727 L 104.310497 180.611649 L 103.957024 180.438650 L 103.893750 180.732808 L 102.880330 180.845832 L 103.163329 180.400774 L 102.637461 180.435131 L 102.514158 180.022616 L 102.732729 179.997220 L 102.792429 179.790413 L 102.394263 179.937959 L 101.921058 179.154599 L 101.938100 178.927837 L 102.299710 178.771485 L 102.306581 178.599322 L 102.933874 179.154765 L 102.489376 178.612405 L 102.502833 178.411502 L 102.032488 178.694754 L 102.156957 178.372670 L 101.984442 178.238481 L 102.007937 177.897101 L 101.952679 177.787564 L 101.701992 178.206323 L 101.705819 177.788542 L 101.405800 177.944564 L 101.429714 178.557762 L 101.294206 178.626973 L 100.433610 178.101599 L 100.301016 177.512568 L 100.160451 177.368485 L 100.003834 177.448085 L 100.088052 177.000334 L 100.482579 177.126517 L 100.315914 176.701558 L 100.563731 176.348304 L 101.012570 177.244752 L 101.256869 177.223380 L 101.363603 177.407087 L 101.012801 176.515475 L 101.338130 176.449013 L 101.513557 176.644364 L 101.582020 176.498258 L 101.085981 175.921991 L 100.995650 176.000283 L 101.177170 175.223235 L 101.510138 175.486938 L 101.590200 175.987288 L 101.977186 176.195590 L 102.229290 176.635756 L 102.472269 176.422132 L 102.366227 176.901372 L 102.661375 176.306195 L 103.181723 177.242290 L 103.101408 176.905198 L 103.235486 176.902416 L 102.870270 176.478204 L 102.692599 175.897308 L 102.960953 175.607174 L 102.732069 175.618323 L 102.567317 174.907307 L 103.068336 174.582034 L 103.111161 174.132798 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e362' d='M 107.252191 191.284633 L 106.936538 192.060846 L 106.755877 191.652454 L 107.252191 191.284633 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e363' d='M 107.024439 192.490512 L 107.149997 192.778073 L 106.983540 192.920563 L 107.024439 192.490512 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e364' d='M 106.846054 191.988832 L 106.976778 192.280989 L 106.803669 193.030782 L 106.627207 192.605074 L 106.846054 191.988832 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e365' d='M 103.805849 187.083957 L 104.205170 187.321769 L 104.184016 187.556403 L 104.683871 188.078192 L 104.876639 188.800718 L 105.952969 188.944119 L 106.139930 189.270327 L 106.405723 189.294790 L 106.732908 189.752690 L 106.880345 189.712109 L 106.851331 190.128889 L 106.666260 189.942136 L 106.848252 190.212403 L 106.642490 190.595881 L 106.384943 190.491158 L 106.451240 190.206807 L 106.225963 190.243837 L 106.298966 190.422563 L 105.872411 190.767330 L 106.446403 190.574277 L 106.527487 190.745187 L 105.551668 191.426518 L 105.175656 191.270780 L 105.463943 191.012794 L 105.301664 190.868028 L 104.883587 191.262204 L 104.508839 191.231145 L 104.111771 191.563783 L 103.877808 191.434983 L 103.428517 191.630521 L 103.021060 191.520026 L 102.699119 191.564873 L 102.584138 191.822044 L 102.541094 191.703250 L 102.280634 191.775373 L 101.998130 191.442020 L 101.778404 191.482974 L 102.033797 190.773047 L 102.441264 190.830999 L 102.593923 190.931324 L 102.499139 191.083521 L 102.780808 191.164451 L 102.750914 190.862653 L 103.133864 191.014530 L 103.722786 190.919582 L 104.333454 190.668544 L 104.474184 190.408744 L 103.123364 190.695546 L 103.060530 190.360434 L 103.458477 190.048245 L 103.515044 189.742102 L 104.148109 189.606595 L 104.545560 189.136304 L 103.652585 189.337614 L 103.535824 188.985789 L 103.018466 188.601256 L 102.625093 188.650017 L 102.272828 188.463384 L 102.306032 188.256083 L 102.698195 187.972061 L 102.479470 187.988861 L 102.442034 187.613453 L 102.797387 187.670779 L 102.893689 187.534402 L 103.333689 187.922014 L 103.106213 187.662323 L 103.105883 187.308904 L 103.328302 187.455539 L 103.319011 187.213912 L 103.805849 187.083957 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e366' d='M 106.615223 173.993388 L 106.824559 174.004767 L 106.733085 174.125267 L 106.615223 173.993388 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e367' d='M 106.449602 192.821227 L 106.551895 193.229399 L 106.054833 193.294376 L 106.069675 193.070142 L 106.449602 192.821227 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e368' d='M 106.471525 192.381556 L 106.399236 192.806604 L 106.285333 192.681706 L 106.471525 192.381556 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e369' d='M 106.288852 193.439295 L 106.409681 193.916666 L 105.303940 195.583160 L 104.991498 196.556944 L 104.887435 196.683381 L 104.834881 196.550623 L 104.771553 196.829938 L 104.537919 196.817130 L 104.296249 197.715283 L 103.801342 197.646227 L 103.474309 197.188525 L 103.534394 196.324796 L 103.970877 195.788043 L 104.739559 195.713555 L 105.148610 195.488332 L 104.577368 195.669027 L 104.129252 195.486023 L 104.539459 194.735812 L 106.288852 193.439295 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e370' d='M 106.125748 178.619881 L 106.329091 178.911676 L 106.171540 178.896118 L 106.125748 178.619881 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e371' d='M 106.007392 179.501367 L 106.129980 179.658479 L 105.981939 179.740992 L 106.007392 179.501367 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e372' d='M 105.915807 198.568997 L 105.922580 199.117524 L 105.578825 199.582252 L 105.525612 199.198488 L 105.915807 198.568997 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e373' d='M 105.538475 175.803195 L 105.632039 175.998513 L 105.425341 176.693257 L 105.281753 176.291902 L 105.434610 176.256598 L 105.384607 175.958328 L 105.538475 175.803195 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e374' d='M 105.176645 178.953015 L 105.628301 179.207483 L 105.479764 179.604716 L 105.057465 179.409618 L 104.973687 179.165814 L 105.176645 178.953015 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e375' d='M 105.492188 183.992628 L 105.590370 184.090094 L 105.281424 184.172279 L 105.492188 183.992628 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e376' d='M 105.253608 176.614151 L 105.367994 177.077076 L 105.009089 177.667975 L 105.221338 178.554574 L 104.807120 178.901121 L 104.571452 178.630799 L 104.649184 177.749446 L 104.841643 177.282123 L 105.118539 177.368045 L 105.036795 176.933047 L 105.112108 176.846631 L 105.122662 177.057671 L 105.307536 176.908365 L 105.253608 176.614151 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e377' d='M 103.928383 183.539214 L 104.111551 183.807480 L 104.057184 184.239949 L 103.741696 184.442688 L 103.440699 184.251813 L 103.434014 184.029515 L 103.764565 183.899999 L 103.733450 183.644431 L 103.928383 183.539214 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e378' d='M 103.927107 189.373401 L 103.994680 189.466084 L 103.838063 189.443106 L 103.927107 189.373401 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e379' d='M 103.276793 195.857473 L 103.351281 197.412153 L 103.714320 198.023613 L 103.840998 199.011262 L 103.550996 199.328498 L 103.450506 199.247963 L 103.430001 199.503091 L 102.897482 199.678388 L 102.445552 199.592367 L 102.239240 200.051882 L 102.041393 200.199979 L 101.732777 200.143137 L 101.558679 200.017909 L 101.619809 199.672241 L 102.137211 199.125484 L 101.657795 198.325304 L 102.218295 197.821865 L 101.628341 197.685312 L 101.125110 198.579826 L 100.590414 198.975431 L 100.344444 198.684769 L 100.831007 198.003659 L 100.873446 197.636606 L 100.693136 197.486311 L 100.897414 197.297535 L 100.956069 196.768534 L 101.389144 196.726370 L 101.870198 196.347939 L 101.819480 197.015966 L 101.918310 196.453596 L 102.146446 196.525610 L 102.778906 195.956534 L 103.276793 195.857473 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e380' d='M 103.654510 180.817465 L 103.811071 180.997171 L 103.413619 181.237347 L 103.311040 181.001459 L 103.654510 180.817465 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e381' d='M 102.470620 188.940293 L 103.050306 188.948077 L 103.577273 189.337724 L 103.143331 189.453804 L 103.028317 189.310512 L 102.899296 189.486975 L 102.709255 189.214750 L 102.797707 189.076659 L 102.651809 189.277364 L 102.460505 189.169452 L 102.470620 188.940293 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e382' d='M 103.276628 193.465560 L 103.374798 193.623387 L 102.900912 194.337700 L 102.975268 194.547147 L 102.446871 195.064219 L 102.294597 194.782979 L 102.641144 194.719486 L 102.290310 194.595248 L 102.544283 194.058660 L 103.276628 193.465560 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e383' d='M 103.016443 184.672089 L 103.306643 184.731624 L 103.326598 184.951295 L 102.973014 184.939971 L 103.016443 184.672089 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e384' d='M 102.756818 182.053074 L 103.205163 182.376818 L 103.277453 182.586704 L 103.092623 182.685380 L 103.325498 182.780538 L 103.144529 183.305635 L 102.783249 183.605950 L 101.845691 182.652726 L 102.756818 182.053074 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e385' d='M 101.903753 178.508133 L 101.891912 178.690895 L 101.753997 178.670291 L 101.903753 178.508133 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e386' d='M 101.254736 181.840451 L 101.705566 181.897843 L 101.628110 182.042914 L 101.839589 182.199367 L 101.327574 182.000640 L 100.884331 182.114654 L 101.254736 181.840451 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e387' d='M 101.827660 190.703297 L 101.705951 191.103278 L 101.421940 191.191685 L 101.471493 190.895152 L 101.827660 190.703297 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e388' d='M 101.514371 186.503776 L 101.630583 186.723776 L 101.274361 187.356841 L 101.115006 187.308377 L 101.110487 187.544847 L 100.484789 187.873253 L 100.388148 187.704047 L 100.288537 187.895737 L 100.033739 187.773643 L 99.890371 188.017392 L 99.867337 187.670845 L 100.184529 187.614442 L 100.527943 187.084122 L 101.514371 186.503776 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e389' d='M 99.491050 188.025418 L 99.670811 188.412974 L 99.438804 188.422253 L 99.408371 188.583719 L 99.333168 188.405190 L 99.142868 188.437319 L 99.057305 188.851414 L 98.616612 188.827831 L 98.458522 189.338196 L 97.882222 189.203261 L 97.945770 188.764524 L 97.738853 188.573330 L 97.994586 188.371745 L 98.394786 188.252674 L 98.650789 188.428843 L 99.053688 188.160375 L 99.309709 188.254155 L 99.491050 188.025418 Z ' fill='#3C4D85' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.01'/>\n <path id='svg_3c9aaa3e0504a623_e390' d='M 126.067299 195.089341 L 127.317595 195.228674 L 127.824025 195.880056 L 128.581119 196.061553 L 129.122389 196.600890 L 128.406196 197.358390 L 128.148100 197.019265 L 127.806609 197.021628 L 127.697324 197.257901 L 127.938555 197.641785 L 127.524545 198.033179 L 127.009507 197.809715 L 126.520691 198.029441 L 126.266168 197.829451 L 125.827871 198.150435 L 125.621339 198.069032 L 125.226031 198.442318 L 125.061080 198.124609 L 124.198098 198.836329 L 123.999702 199.110312 L 124.076169 199.295020 L 123.832201 199.434595 L 123.449097 198.310395 L 122.827884 198.622397 L 122.694884 198.363455 L 122.344148 198.397526 L 122.186816 198.013333 L 121.791288 198.170830 L 121.466334 198.649004 L 120.895422 198.456325 L 120.650607 198.150545 L 119.667807 198.522930 L 119.612944 198.257907 L 119.800434 198.083259 L 119.572012 197.527299 L 119.842719 197.251622 L 119.265187 197.341723 L 119.025848 197.089673 L 119.366227 197.000134 L 119.719811 196.596525 L 120.166386 196.483809 L 120.645208 195.865829 L 121.078019 196.011748 L 121.324725 195.774927 L 122.066943 195.957457 L 122.686869 195.862333 L 122.946395 196.110358 L 123.508313 195.986648 L 124.114133 196.509053 L 124.669455 196.483688 L 125.388332 196.139945 L 125.458181 195.730047 L 126.067299 195.089341 Z ' fill='#3C4073' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 16.81'/>\n <path id='svg_3c9aaa3e0504a623_e391' d='M 129.205640 154.402221 L 129.308912 154.563785 L 129.091363 154.569799 L 129.154252 154.875337 L 128.974590 154.977674 L 128.790532 154.847696 L 128.900675 154.496477 L 129.205640 154.402221 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e392' d='M 128.084815 155.287863 L 128.120349 155.464929 L 128.342856 155.499111 L 128.009976 155.984112 L 128.276009 155.948007 L 128.564165 155.635553 L 128.781373 155.675408 L 128.959286 155.384196 L 129.036115 155.738615 L 129.289088 155.838962 L 128.633639 155.826660 L 128.377863 156.268804 L 128.438916 156.502724 L 128.293612 156.260086 L 128.027116 156.535036 L 127.999739 156.278513 L 127.832271 156.430786 L 127.618834 156.343127 L 127.253926 156.955907 L 127.240722 156.500008 L 127.894786 155.924752 L 127.716080 155.441511 L 127.804960 155.669130 L 127.966426 155.628296 L 128.084815 155.287863 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e393' d='M 127.663054 157.222523 L 127.685439 157.458554 L 128.031404 157.482632 L 127.810128 157.542432 L 127.867959 157.793590 L 128.240179 157.726271 L 128.232131 158.293412 L 128.039364 158.195231 L 127.794923 158.339237 L 127.798529 158.026333 L 127.634237 157.903096 L 127.486625 157.983983 L 127.528690 158.299063 L 127.273387 158.259098 L 127.393754 157.879754 L 127.696313 157.756935 L 127.364399 157.335647 L 127.663054 157.222523 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e394' d='M 127.922349 157.289107 L 127.998695 157.391091 L 127.839527 157.436477 L 127.922349 157.289107 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e395' d='M 127.146718 160.371519 L 127.413456 160.415409 L 127.291220 160.544737 L 127.146718 160.371519 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e396' d='M 123.935208 157.280420 L 124.864069 157.665625 L 125.036012 157.893222 L 124.933906 157.979783 L 125.298034 158.307111 L 125.244655 158.724925 L 124.949914 158.592913 L 124.923385 158.902014 L 124.524338 159.048780 L 124.641397 159.138560 L 125.256716 159.055816 L 125.550919 159.377713 L 125.744829 158.997434 L 125.947249 159.082423 L 125.847122 159.289141 L 126.008785 159.294661 L 125.810203 159.613007 L 126.014855 159.679161 L 126.197078 159.372898 L 126.400377 159.432433 L 126.543680 159.279335 L 126.616058 159.646386 L 126.283847 159.756167 L 126.372111 160.103263 L 126.574959 160.183677 L 126.676274 160.106056 L 126.483034 159.877744 L 127.142013 159.544138 L 127.107391 160.198377 L 126.646248 160.250184 L 126.336346 160.771807 L 126.194472 160.531017 L 125.933726 160.477627 L 125.916118 160.529206 L 125.682491 160.483421 L 125.483753 159.688561 L 124.072410 160.288004 L 123.764826 159.851698 L 123.713647 159.372766 L 123.409550 159.780684 L 123.024027 159.571272 L 122.988812 158.959988 L 123.192661 158.478746 L 123.066180 157.878940 L 123.315953 157.564872 L 123.175290 157.477762 L 123.935208 157.280420 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e397' d='M 125.903615 160.565831 L 125.826145 160.792763 L 126.004751 160.736207 L 125.987467 160.970709 L 126.187985 160.994633 L 125.871596 161.152933 L 126.044892 161.412315 L 125.708151 161.713048 L 125.752866 162.463391 L 125.399151 162.405890 L 125.387056 161.807436 L 125.119868 161.552496 L 125.366827 161.498128 L 125.237081 161.319280 L 125.034121 161.395538 L 125.171025 161.227475 L 125.543069 161.311287 L 125.889188 161.117541 L 125.336230 160.988257 L 125.820329 160.954075 L 125.757583 160.692845 L 125.903615 160.565831 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e398' d='M 126.980085 156.184113 L 127.082588 156.408941 L 126.931665 156.349702 L 126.980085 156.184113 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e399' d='M 126.855924 156.132043 L 126.834320 156.368283 L 127.015752 156.479108 L 126.827042 156.867071 L 126.976468 157.391762 L 126.646687 157.545432 L 126.415440 156.868775 L 126.718867 156.866774 L 126.648843 156.325074 L 126.855924 156.132043 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e400' d='M 126.554422 158.128010 L 126.424412 158.626150 L 126.533225 158.858519 L 126.397794 158.979657 L 125.722280 158.821908 L 125.926470 158.240991 L 126.216187 158.502451 L 126.554422 158.128010 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e401' d='M 125.638931 154.775418 L 125.795119 154.924592 L 125.432233 155.300913 L 125.960872 155.462576 L 126.101975 155.935153 L 126.252501 155.913131 L 126.367614 156.157364 L 126.233481 156.127337 L 126.074951 156.411491 L 126.123030 156.069330 L 125.883998 155.801405 L 125.704513 155.712536 L 125.449165 156.038293 L 124.917997 155.145561 L 125.318187 155.175960 L 125.638931 154.775418 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e402' d='M 126.126812 154.467528 L 126.136190 155.103166 L 125.948426 155.250580 L 126.126812 154.467528 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e403' d='M 125.812369 157.104806 L 125.827409 157.695200 L 125.669847 157.289382 L 125.812369 157.104806 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e404' d='M 125.548500 158.072389 L 125.655125 158.230633 L 125.474453 158.311465 L 125.357460 158.128109 L 125.548500 158.072389 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e405' d='M 124.880473 156.726770 L 125.143781 157.008736 L 125.632510 156.986592 L 125.469043 157.206548 L 125.554272 157.533976 L 125.071866 157.645582 L 124.726044 157.398744 L 124.571912 157.047260 L 124.880473 156.726770 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e406' d='M 125.559110 157.627595 L 125.536418 157.838305 L 125.229275 157.797119 L 125.559110 157.627595 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e407' d='M 124.827810 161.001878 L 124.565767 161.215744 L 124.783425 161.229279 L 124.758280 161.455007 L 124.380992 161.421430 L 124.361752 161.206322 L 124.827810 161.001878 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e408' d='M 123.027721 159.964183 L 123.931812 160.653188 L 123.910878 161.117508 L 124.218186 161.363544 L 123.634871 161.767757 L 124.296015 161.534420 L 124.292003 161.776761 L 124.424245 161.787899 L 123.786793 161.801522 L 123.785661 161.962634 L 123.359327 161.875064 L 122.859735 160.778415 L 122.514750 160.705422 L 122.731979 160.089883 L 123.027721 159.964183 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e409' d='M 123.322946 159.874765 L 123.610882 160.105254 L 123.338317 160.074106 L 123.322946 159.874765 Z ' fill='#3B3B6C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 17.11'/>\n <path id='svg_3c9aaa3e0504a623_e410' d='M 139.125632 141.641795 L 139.165355 141.792112 L 138.890624 141.904728 L 139.125632 141.641795 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e411' d='M 138.333532 136.576839 L 138.350541 137.075045 L 138.585383 136.587164 L 139.035807 136.894197 L 138.771565 137.008705 L 138.917341 137.371413 L 138.588374 137.297959 L 138.905687 137.779090 L 138.404886 138.331675 L 138.627239 138.556700 L 138.485312 138.679597 L 138.140084 138.488182 L 137.931023 138.742650 L 137.731197 138.567012 L 137.708659 138.131025 L 137.902668 138.150694 L 137.823551 137.835987 L 138.008589 137.363552 L 137.870773 137.249704 L 138.333532 136.576839 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e412' d='M 138.434077 139.175230 L 138.646381 139.235699 L 138.793784 139.591756 L 138.996722 139.394174 L 138.844063 139.966450 L 138.655407 139.726274 L 138.303704 139.680284 L 138.488830 139.963426 L 138.282627 140.044456 L 137.948999 139.472367 L 138.014746 139.212941 L 138.252722 139.335474 L 138.434077 139.175230 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e413' d='M 138.153596 138.615685 L 138.368220 138.711316 L 138.315446 138.854464 L 138.153596 138.615685 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e414' d='M 138.209019 142.180966 L 137.817857 142.884945 L 137.458247 142.851456 L 137.664252 142.424352 L 138.209019 142.180966 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e415' d='M 137.695575 139.353945 L 137.827509 139.454105 L 137.620098 139.638373 L 137.695575 139.353945 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e416' d='M 137.340232 137.955882 L 137.617316 138.115688 L 137.745270 139.117618 L 137.440920 139.082821 L 137.223691 138.784880 L 137.521807 139.392316 L 137.361451 139.597035 L 137.126289 139.530176 L 137.625760 139.843861 L 137.563476 140.231858 L 137.356889 140.215244 L 137.524347 140.423295 L 137.491791 140.852388 L 137.247438 140.957826 L 136.957699 140.757121 L 137.047943 141.107406 L 136.562282 141.299964 L 136.467433 141.496469 L 136.661266 141.547351 L 136.496568 141.675273 L 136.660166 141.815178 L 136.487277 141.681814 L 136.114893 142.029627 L 136.645983 141.884718 L 136.685839 142.336879 L 136.948223 141.696822 L 137.001711 141.867183 L 137.373326 141.433559 L 136.824150 142.269966 L 136.897318 142.428398 L 137.021446 142.128907 L 137.226714 142.197843 L 137.226219 142.586444 L 136.968452 142.726898 L 136.546241 142.661228 L 136.669347 143.012943 L 136.741581 142.818043 L 136.864950 143.014306 L 137.174270 142.959763 L 137.197468 143.218540 L 136.728343 143.519054 L 136.796641 143.710865 L 137.044864 143.572872 L 137.082135 143.783417 L 136.827723 143.780603 L 136.625863 144.037666 L 136.697427 143.775028 L 136.521910 143.834608 L 136.478547 143.672780 L 136.526253 143.960814 L 136.304053 144.144698 L 136.580730 144.112043 L 136.378883 144.504569 L 136.693975 144.220449 L 136.385072 144.850930 L 136.773740 144.454742 L 136.722989 144.927386 L 136.918285 145.134874 L 136.745506 145.138458 L 136.775609 145.383285 L 136.672337 145.231945 L 136.658792 145.507302 L 136.483111 145.377314 L 136.512895 145.656630 L 136.358718 145.735758 L 136.494567 146.375715 L 136.694249 146.546999 L 136.464991 146.410029 L 136.317577 146.553487 L 136.498217 147.299410 L 136.397178 147.025162 L 136.316620 147.195423 L 136.196429 147.007252 L 136.052664 147.081234 L 136.201585 147.520509 L 136.095290 147.941621 L 135.971096 147.920820 L 136.111958 148.091971 L 136.097357 148.366747 L 135.934814 148.391901 L 136.119071 148.489566 L 136.064428 148.775478 L 135.945643 148.491787 L 135.845417 148.742055 L 135.809069 148.237429 L 135.614532 148.402105 L 135.421963 148.336303 L 135.353852 148.036043 L 135.526785 147.950340 L 135.518551 147.630015 L 135.733141 147.624705 L 135.718409 147.353689 L 135.536527 147.346466 L 135.576657 147.208430 L 135.725665 147.314648 L 135.622228 146.984142 L 135.800450 146.813561 L 136.055269 145.773095 L 136.093135 145.223885 L 135.857236 145.344144 L 135.974108 144.566117 L 135.773293 145.005018 L 136.070145 144.070099 L 135.714582 144.962414 L 135.920389 143.887964 L 135.593038 144.514828 L 135.535328 143.970972 L 135.081342 143.853804 L 135.416686 144.075597 L 135.515417 144.601299 L 135.460939 144.409170 L 135.306961 144.527196 L 135.283136 144.314387 L 135.268205 144.781060 L 135.143363 144.961150 L 135.054416 144.687628 L 134.895326 145.186373 L 134.372427 144.646377 L 134.398978 144.479975 L 134.745801 144.474038 L 134.637394 144.424672 L 134.842476 144.276104 L 134.622332 144.348591 L 134.714587 144.153295 L 134.463824 143.956647 L 134.574176 144.172722 L 134.356374 144.527086 L 134.264108 144.185893 L 133.892296 144.447266 L 133.734360 144.295432 L 133.825240 144.176977 L 133.495405 144.108437 L 133.559876 143.582822 L 133.420301 143.453086 L 133.786144 143.210163 L 134.040832 143.225665 L 134.211852 143.461388 L 134.191677 143.277450 L 134.436151 143.392793 L 134.346699 143.234736 L 134.622057 143.067069 L 134.791758 143.615916 L 134.901428 143.438190 L 134.726945 143.222751 L 134.990539 143.336281 L 134.868609 143.168988 L 135.094437 142.945085 L 135.447646 143.473152 L 135.589355 143.243081 L 135.402888 143.018088 L 135.525862 142.746468 L 135.675399 142.841912 L 135.620524 142.567588 L 136.085658 142.666561 L 135.847231 142.441261 L 135.469691 142.455961 L 135.528061 142.142232 L 135.395577 142.365113 L 135.223941 142.275838 L 135.256496 141.844039 L 134.931058 141.883015 L 134.945131 141.535038 L 135.112677 141.454074 L 134.851513 141.442684 L 135.050403 141.206191 L 134.833976 141.233073 L 134.900340 140.975405 L 134.652182 141.440485 L 134.649895 141.052345 L 134.311726 140.978231 L 133.961231 141.191624 L 133.832540 141.018681 L 133.959308 140.744532 L 134.254862 140.808982 L 134.232467 140.397270 L 134.430258 140.168913 L 134.524151 140.470109 L 134.939469 140.797910 L 135.266995 140.697036 L 134.905771 140.718310 L 134.644102 140.395620 L 135.022917 139.950068 L 135.024512 139.368788 L 135.619414 139.624872 L 135.564508 139.284844 L 136.521086 139.187049 L 136.679187 138.906853 L 136.713105 139.348437 L 136.971696 139.541676 L 136.752300 139.271871 L 136.847183 138.055877 L 137.093845 138.023608 L 137.170257 138.292479 L 137.145464 137.991615 L 137.361166 138.096282 L 137.340232 137.955882 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e417' d='M 137.499708 145.049821 L 137.687110 145.095448 L 137.660833 145.332600 L 137.499708 145.049821 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e418' d='M 137.300267 144.580465 L 137.253870 144.961040 L 137.445395 144.912169 L 137.284875 145.693275 L 136.979997 145.486963 L 137.029945 145.126639 L 136.812528 144.839737 L 136.924584 144.698711 L 137.236609 144.855988 L 137.164815 144.677601 L 137.300267 144.580465 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e419' d='M 135.888791 145.778428 L 135.679016 146.477624 L 135.699795 146.010653 L 135.888791 145.778428 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e420' d='M 135.709233 145.778398 L 135.736957 145.807233 L 135.475782 146.469488 L 135.709233 145.778398 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e421' d='M 135.742572 145.679702 L 135.797207 145.517967 L 135.766829 145.682577 L 135.742572 145.679702 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e422' d='M 135.085036 142.195424 L 135.386132 142.468154 L 135.066291 142.753285 L 134.796431 142.394809 L 135.085036 142.195424 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e423' d='M 134.808139 142.797429 L 135.030669 142.971032 L 134.818420 143.170528 L 134.808139 142.797429 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e424' d='M 134.147149 144.413843 L 134.246430 144.625982 L 134.021646 144.544678 L 134.147149 144.413843 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e425' d='M 134.052266 152.450177 L 134.050397 152.821186 L 133.763166 152.956980 L 133.855189 152.468813 L 134.052266 152.450177 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e426' d='M 133.324539 142.745534 L 133.520275 142.926460 L 133.624304 142.783136 L 133.649196 143.053920 L 133.326024 143.073666 L 133.202500 142.862132 L 133.324539 142.745534 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e427' d='M 131.167579 145.059771 L 131.374386 145.282575 L 131.223486 145.649626 L 130.899258 145.355194 L 131.167579 145.059771 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e428' d='M 107.554925 156.895865 L 107.623036 157.091568 L 107.443880 157.121253 L 107.554925 156.895865 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e429' d='M 101.242384 169.941781 L 100.715246 170.446028 L 100.916819 170.875342 L 100.759905 170.968048 L 100.998277 170.970939 L 101.190582 171.375977 L 100.931827 171.443649 L 101.213561 171.869137 L 100.329549 171.617759 L 100.483855 171.805478 L 100.254674 171.805423 L 100.298344 171.983182 L 100.493101 171.997585 L 100.702481 172.512261 L 100.307997 172.396555 L 100.323225 172.760957 L 99.903894 172.367243 L 100.058026 172.616313 L 99.964529 172.757659 L 99.864083 172.627824 L 99.879266 172.924005 L 99.718065 172.825275 L 99.765693 173.097059 L 99.445599 172.980880 L 99.586317 173.203376 L 99.332520 173.256634 L 99.265772 173.492147 L 99.068970 173.438461 L 99.060339 173.596320 L 98.120528 172.191551 L 98.444427 172.254659 L 98.456136 172.474439 L 98.837909 172.275901 L 99.063528 171.883319 L 99.276107 171.886233 L 99.380390 171.440405 L 100.249188 171.564907 L 99.932865 171.265152 L 100.058389 171.149402 L 99.642455 171.095826 L 99.729851 170.947906 L 99.591869 171.044218 L 99.106571 170.696571 L 99.129715 170.834442 L 98.947041 170.849559 L 98.588729 170.636321 L 98.549204 170.298954 L 98.389015 170.356895 L 98.608630 169.968239 L 98.809885 170.124966 L 98.980849 169.874181 L 99.773994 169.692716 L 98.910869 169.846640 L 98.773768 169.739608 L 99.050939 169.603496 L 98.806146 169.569963 L 99.026147 169.272341 L 98.790864 169.501082 L 98.625286 169.444846 L 98.365321 168.711236 L 98.687075 168.277777 L 98.631938 167.981750 L 99.040934 168.002001 L 98.898556 167.838930 L 99.207171 167.274526 L 99.183247 167.420776 L 99.493633 167.593093 L 99.610120 167.409155 L 99.924894 167.705293 L 99.899914 167.829882 L 99.564944 167.805211 L 99.999602 168.035513 L 100.127083 168.920461 L 100.029892 168.131219 L 100.131205 168.234788 L 100.089426 168.036227 L 100.212016 168.118906 L 100.272309 167.898422 L 100.929529 168.036019 L 101.007139 168.359631 L 101.117689 168.313179 L 101.191452 168.149690 L 100.886277 168.009236 L 101.009470 167.803022 L 100.594295 167.264302 L 100.549987 167.011648 L 100.832172 166.950167 L 100.516398 166.925616 L 100.674940 166.645531 L 100.984436 166.639978 L 101.701399 166.097662 L 101.770764 166.244912 L 102.380871 166.014686 L 102.578750 165.638873 L 104.035184 164.706691 L 104.341436 164.285315 L 104.813002 164.927307 L 104.708499 165.170561 L 104.854726 165.537612 L 104.531267 166.102181 L 104.837025 166.454116 L 104.360951 166.734839 L 104.014096 167.304432 L 103.770623 167.327311 L 103.640359 167.738451 L 103.942115 168.046166 L 104.810363 167.415883 L 104.946849 167.484709 L 104.801535 167.942411 L 104.209469 168.408843 L 103.917102 168.080842 L 103.543058 168.282955 L 103.269130 167.965719 L 103.366123 168.690841 L 103.004107 168.833725 L 103.346333 168.810791 L 103.331545 168.949982 L 102.580565 168.775630 L 102.990275 169.033155 L 102.687806 169.255761 L 101.627065 169.430354 L 102.899493 169.430003 L 103.129741 169.175479 L 103.122100 169.510153 L 103.246448 169.422801 L 103.298452 169.624055 L 103.242929 169.962137 L 102.850733 169.938873 L 103.335724 170.080328 L 103.111875 170.552488 L 102.802335 170.328475 L 102.715699 170.453977 L 102.658845 170.289334 L 101.928645 170.415727 L 102.549285 170.497406 L 102.697052 170.665676 L 102.518446 171.278071 L 102.198780 171.389995 L 102.033752 171.012279 L 102.049419 171.511154 L 101.848440 171.395602 L 101.803582 171.567227 L 101.433946 170.908985 L 101.627175 171.467507 L 101.455935 171.335518 L 101.334775 171.444253 L 101.039518 170.895846 L 101.002335 170.284496 L 101.242384 169.941781 Z M 101.308367 169.847578 L 101.358964 169.775341 L 101.858797 169.814470 L 101.204853 169.712847 L 101.308367 169.847578 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e430' d='M 100.961204 171.884958 L 101.302781 172.010031 L 101.347200 172.193914 L 101.020618 172.236969 L 100.961204 171.884958 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e431' d='M 100.077112 167.127915 L 100.340871 167.196356 L 100.403309 167.508369 L 100.536519 167.419270 L 100.721227 167.920126 L 100.184265 167.800956 L 100.288482 167.581296 L 100.077112 167.127915 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e432' d='M 99.013118 171.221834 L 99.144503 171.592350 L 98.959135 171.735333 L 98.735671 171.544633 L 98.520289 171.765623 L 98.478839 171.530395 L 99.013118 171.221834 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e433' d='M 98.324422 169.739168 L 98.472133 170.173210 L 98.155326 170.095226 L 98.048789 169.869453 L 98.324422 169.739168 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e434' d='M 98.412477 172.991886 L 98.421173 173.278469 L 98.278904 173.055995 L 98.412477 172.991886 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e435' d='M 96.228097 177.218728 L 96.487056 177.383317 L 96.352950 177.215321 L 95.962535 177.090587 L 95.950386 176.527349 L 96.477452 176.252761 L 96.543519 176.286331 L 96.458377 176.173875 L 96.871716 176.185970 L 96.452274 176.157988 L 96.615389 175.917583 L 96.451736 175.699946 L 96.441610 176.139573 L 96.198137 176.271562 L 96.223534 175.955194 L 95.988525 175.647787 L 96.134478 175.458627 L 95.972749 175.629867 L 95.781389 175.340644 L 96.020520 175.287102 L 96.504103 175.550101 L 96.012658 175.268862 L 95.543578 175.343097 L 95.184672 174.813348 L 95.402496 174.747282 L 95.588490 174.178920 L 95.891774 174.159833 L 96.182359 174.413158 L 95.927012 174.186814 L 96.374543 174.116691 L 96.359636 174.221298 L 96.588387 174.152478 L 96.798822 173.811979 L 96.865982 174.192805 L 96.940706 174.144892 L 97.047122 174.354679 L 96.966874 174.117296 L 97.131560 174.204131 L 97.164830 173.943912 L 97.499602 173.974191 L 97.647635 173.842065 L 97.590702 173.954753 L 97.839453 174.287216 L 97.612746 174.434543 L 97.950443 174.593359 L 98.171422 174.490680 L 97.814276 174.369620 L 98.063851 174.318770 L 98.407760 174.638381 L 98.127949 175.016043 L 97.926508 174.777044 L 98.060542 174.710362 L 97.843356 174.818307 L 97.718293 174.675102 L 97.751167 174.838482 L 97.519018 174.608971 L 97.736379 174.544268 L 97.379167 174.578076 L 97.572913 174.684009 L 97.483967 174.816514 L 97.796080 174.909945 L 97.592945 174.930605 L 97.791517 174.981157 L 97.575530 175.156498 L 98.107885 175.181730 L 97.979303 175.516018 L 97.057328 175.597302 L 97.819718 175.638442 L 97.844346 175.906874 L 97.601487 176.128315 L 97.230521 176.045789 L 97.402586 176.203011 L 97.028937 176.185639 L 96.886932 176.029276 L 96.961266 176.223845 L 97.285714 176.205155 L 97.319303 176.615305 L 96.909284 176.335759 L 96.713566 176.372735 L 96.970381 176.503227 L 96.905480 176.660273 L 97.030719 176.543775 L 97.329197 176.766151 L 97.102436 176.737674 L 97.203256 176.933761 L 97.000187 176.820573 L 96.984685 176.995825 L 96.898762 176.850589 L 96.818117 176.992638 L 97.292311 177.162173 L 97.059557 177.320659 L 97.309298 177.343747 L 97.014480 177.354522 L 97.088692 177.503498 L 96.545574 177.229206 L 96.877158 177.511304 L 96.671533 177.500567 L 96.683929 177.508445 L 96.456958 177.515218 L 96.797832 177.726137 L 96.589321 177.797326 L 96.994579 178.099181 L 96.751600 178.082568 L 96.820998 178.186213 L 97.094905 178.116937 L 96.824737 178.329310 L 97.027893 178.422090 L 97.056423 178.694644 L 97.240196 178.740052 L 96.796733 179.187144 L 96.666118 179.620053 L 96.467971 179.588909 L 96.696023 179.797175 L 96.761440 180.370593 L 96.590696 180.530124 L 96.253505 180.325999 L 96.446833 180.547935 L 96.198456 180.390252 L 96.052052 180.476922 L 96.135248 180.655285 L 96.728182 180.708400 L 96.744036 180.911348 L 96.938507 180.950994 L 96.808057 181.212169 L 96.476188 181.031364 L 95.838550 181.038862 L 95.591766 180.691315 L 95.612788 179.631333 L 95.410753 179.313152 L 95.640538 179.172993 L 95.581245 178.761447 L 95.861287 178.561753 L 95.738466 177.539274 L 96.228097 177.218728 Z M 97.035584 175.596128 L 97.080479 175.393638 L 96.766982 175.581634 L 97.035584 175.596128 Z M 96.454153 179.576290 L 96.537812 179.563926 L 96.448756 179.436939 L 96.145813 179.517848 L 96.065554 179.358097 L 96.124286 179.536670 L 96.400766 179.527534 L 96.454153 179.576290 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e436' d='M 97.661893 173.813844 L 97.359652 173.730948 L 97.584656 173.407929 L 97.843587 173.380003 L 98.078309 173.781249 L 97.759732 173.620190 L 97.661893 173.813844 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e437' d='M 97.481526 176.253036 L 97.642981 176.412126 L 97.466354 176.677821 L 97.310188 176.400847 L 97.514015 176.404045 L 97.374605 176.299543 L 97.481526 176.253036 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e438' d='M 97.447773 172.781461 L 97.637594 172.973371 L 97.329912 173.097555 L 97.181431 172.935989 L 97.447773 172.781461 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e439' d='M 97.360147 177.379149 L 97.355364 177.576006 L 97.144764 177.615917 L 97.242670 177.672594 L 97.047353 177.594697 L 97.360147 177.379149 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e440' d='M 96.999472 173.543272 L 97.038503 173.803622 L 96.906843 173.708520 L 96.999472 173.543272 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e441' d='M 96.884073 177.455276 L 97.021439 177.495010 L 96.909295 177.630639 L 96.884073 177.455276 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e442' d='M 96.214023 181.159891 L 96.536603 181.247461 L 96.339240 181.706494 L 96.214023 181.159891 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e443' d='M 96.103727 182.010580 L 96.122439 182.151211 L 95.937787 182.073369 L 96.103727 182.010580 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e444' d='M 95.915357 182.078977 L 96.046027 182.252086 L 95.833558 182.161545 L 95.915357 182.078977 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e445' d='M 95.704207 181.533374 L 95.812393 181.668771 L 95.631644 181.775199 L 95.704207 181.533374 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e446' d='M 95.297465 181.538816 L 95.483284 181.643803 L 95.408125 182.053370 L 95.635547 182.268302 L 95.392469 182.126110 L 95.536618 182.256132 L 95.373504 182.251976 L 95.703823 182.545969 L 95.437216 182.374147 L 95.525876 182.533644 L 95.264075 182.726312 L 95.282513 182.899113 L 94.966805 182.948533 L 94.831254 182.749565 L 94.824976 182.888449 L 94.644017 182.861688 L 94.579336 182.959825 L 94.959274 183.086130 L 94.723980 183.037160 L 94.602678 183.170557 L 94.797050 183.247969 L 94.485356 183.318335 L 94.522901 183.084756 L 94.286024 182.992622 L 94.391847 182.816434 L 94.640026 182.862315 L 94.439453 182.734305 L 94.792147 182.476769 L 94.862841 182.162854 L 94.725530 182.061330 L 95.177185 181.994154 L 95.297465 181.538816 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e447' d='M 94.629768 183.415141 L 94.865380 183.637560 L 94.570783 183.597155 L 94.629768 183.415141 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e448' d='M 94.467215 175.605734 L 94.567814 175.771477 L 94.799029 175.710457 L 94.647195 175.950686 L 94.606240 175.790332 L 94.228359 175.790001 L 94.467215 175.605734 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e449' d='M 94.252381 183.891698 L 94.429943 184.063102 L 94.097689 184.025172 L 94.252381 183.891698 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e450' d='M 93.733111 184.722499 L 93.943490 184.813919 L 93.613765 184.771535 L 93.733111 184.722499 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e451' d='M 93.905460 184.252275 L 93.893685 184.582100 L 93.592106 184.591829 L 93.660326 184.317461 L 93.905460 184.252275 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e452' d='M 88.459754 171.468441 L 88.785851 171.532814 L 88.869520 171.700206 L 88.701633 171.803665 L 88.837471 171.927463 L 88.470749 171.699381 L 88.459754 171.468441 Z ' fill='#3B4F88' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 15.9'/>\n <path id='svg_3c9aaa3e0504a623_e453' d='M 125.572282 190.365403 L 126.845249 190.473237 L 126.359072 190.509025 L 126.300247 190.630433 L 126.142645 190.447236 L 126.177955 191.671747 L 127.138649 192.023432 L 127.635788 192.499000 L 127.500566 192.742990 L 126.104384 193.677139 L 125.685547 193.628555 L 125.183548 193.297807 L 123.749610 194.480454 L 123.589937 195.126943 L 122.873501 195.179266 L 122.574637 195.451390 L 122.139320 195.542194 L 122.080961 195.785668 L 121.578269 195.699603 L 121.580237 195.511937 L 121.392001 195.439615 L 119.907861 195.121710 L 119.710169 194.867219 L 119.875009 194.546553 L 120.480335 194.471273 L 120.243931 194.310599 L 120.815470 194.125649 L 120.903931 193.885958 L 121.937824 194.160920 L 122.258841 194.076581 L 122.251024 193.849236 L 122.432423 193.748263 L 122.765754 193.783599 L 122.683230 193.601750 L 123.014418 193.475324 L 122.993033 193.182177 L 122.821233 193.118684 L 122.893115 193.011520 L 122.298179 192.927686 L 122.398570 192.739790 L 122.195106 192.570387 L 122.527734 192.323945 L 122.812262 192.338502 L 122.770988 192.028335 L 123.080088 191.714375 L 122.940040 191.579791 L 125.572282 190.365403 Z ' fill='#0B0405' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 21.4'/>\n <path id='svg_3c9aaa3e0504a623_e454' d='M 125.772624 183.919295 L 126.501670 184.179810 L 127.019677 184.732559 L 127.187618 185.093400 L 127.119375 185.624424 L 127.477203 186.347775 L 128.054679 186.330624 L 128.509083 186.795131 L 128.784682 186.714662 L 128.661444 187.536920 L 128.279330 187.827109 L 128.238177 188.191984 L 128.389704 188.293123 L 127.994880 188.991814 L 126.855155 189.835709 L 126.685477 190.278756 L 126.140049 190.090497 L 124.636351 190.377684 L 124.772177 190.438659 L 124.309803 190.546625 L 124.323106 190.791034 L 124.153845 190.876846 L 124.279403 190.898835 L 124.097861 190.894064 L 124.221627 190.942263 L 123.020552 191.428694 L 123.301506 191.424637 L 122.940040 191.579791 L 123.080088 191.714375 L 122.770988 192.028335 L 122.812262 192.338502 L 122.527734 192.323945 L 122.195106 192.570387 L 122.398570 192.739790 L 122.298179 192.927686 L 122.893115 193.011520 L 123.014418 193.475324 L 122.683230 193.601750 L 122.765754 193.783599 L 122.251024 193.849236 L 122.258841 194.076581 L 121.097149 194.044466 L 120.937223 193.877449 L 120.815470 194.125649 L 120.411542 194.186394 L 120.364353 193.865751 L 120.741807 193.710584 L 120.870981 193.431841 L 120.580385 193.308527 L 120.242655 193.508385 L 119.765988 193.491453 L 119.474303 193.139023 L 119.088671 193.393437 L 119.025012 193.020117 L 118.844428 193.156175 L 118.663095 192.910722 L 118.390760 192.977624 L 117.965031 192.390957 L 117.743183 192.455747 L 117.472146 192.192890 L 117.238623 192.304045 L 116.731281 191.994768 L 116.406558 191.678237 L 116.406723 191.002458 L 116.707422 190.983932 L 116.697307 190.112562 L 116.964309 190.281383 L 117.400792 190.042417 L 117.039677 189.480872 L 116.061935 189.880798 L 115.856007 189.090291 L 115.630894 188.983700 L 115.377801 189.219752 L 114.764746 189.383296 L 114.658099 189.239817 L 114.507199 189.460478 L 114.177474 189.444260 L 113.784860 189.827749 L 113.456399 189.646669 L 113.670076 189.170222 L 113.393840 188.853525 L 114.059998 188.564643 L 114.326284 188.619452 L 113.840052 187.986167 L 113.892276 187.598281 L 113.653750 187.775512 L 113.309292 187.730984 L 113.311655 187.311323 L 113.714605 187.349749 L 114.164610 187.141074 L 114.209907 186.325664 L 114.505055 186.183781 L 114.696415 185.787922 L 115.210684 186.191422 L 115.689440 185.492721 L 115.979421 185.604700 L 116.168856 185.274699 L 116.877288 185.064758 L 117.060237 184.565222 L 117.310911 184.750370 L 118.274416 184.854709 L 118.651858 184.161064 L 118.929745 184.483918 L 119.423289 184.307951 L 119.680946 184.501839 L 119.970705 184.380405 L 120.168058 184.630640 L 120.406638 184.405583 L 121.023431 184.437521 L 121.160422 185.015272 L 121.317589 184.919026 L 121.794367 185.167557 L 122.038280 185.004564 L 122.421824 185.158487 L 123.014208 184.770271 L 123.023169 184.509810 L 124.111901 185.019956 L 124.374451 184.167496 L 125.772624 183.919295 Z ' fill='#34274D' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 18.48'/>\n <path id='svg_3c9aaa3e0504a623_e455' d='M 113.926909 194.730645 L 114.670677 194.901214 L 114.504121 195.061811 L 114.601488 195.507441 L 115.052858 196.015574 L 115.383528 195.915920 L 115.588588 196.180052 L 115.922876 196.211222 L 116.015208 195.780292 L 115.882394 195.378662 L 116.549618 195.590615 L 116.799447 195.351505 L 117.121190 196.014200 L 117.042535 196.304434 L 117.540544 196.182439 L 117.393073 196.427397 L 117.478391 196.679819 L 116.536304 196.778133 L 116.731863 197.145976 L 117.299082 197.156388 L 117.334022 197.647612 L 117.141035 197.663697 L 117.077894 197.862840 L 116.652703 197.885731 L 116.446633 197.617553 L 116.253811 197.686312 L 116.425083 198.154316 L 115.873071 198.521105 L 116.275118 199.091632 L 116.263025 199.482861 L 116.062979 199.657949 L 115.356196 199.380886 L 115.150720 199.060781 L 115.035376 199.171694 L 114.779468 198.900096 L 114.574453 198.923778 L 114.652701 198.701899 L 114.416000 198.549899 L 114.149361 198.761082 L 113.881688 198.274607 L 113.566519 198.531835 L 113.454683 198.349436 L 113.258189 198.542071 L 113.109576 197.996897 L 112.870776 197.970785 L 112.865278 197.778490 L 112.452104 197.529245 L 112.682615 197.416276 L 112.368216 196.878754 L 111.725718 197.057162 L 111.849131 196.243832 L 112.433721 195.906905 L 113.103529 196.170598 L 113.177115 196.383726 L 113.651100 196.380295 L 113.673155 195.769187 L 113.381031 195.569472 L 113.789081 195.370921 L 113.670352 195.003145 L 113.841470 194.588882 L 113.926909 194.730645 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_3c9aaa3e0504a623_e456' d='M 117.571218 195.370295 L 117.775507 195.408666 L 117.698908 195.630546 L 117.985569 195.662694 L 117.981534 195.942615 L 118.270909 195.981205 L 118.315096 196.221469 L 118.847473 196.281213 L 118.541957 196.533581 L 119.182102 196.956782 L 119.080403 197.210129 L 119.493830 197.357665 L 119.842719 197.251622 L 119.572012 197.527299 L 119.800434 198.083259 L 119.595024 198.486428 L 120.650607 198.150545 L 120.895422 198.456325 L 121.552707 198.716433 L 121.675901 199.227811 L 121.814091 199.396147 L 121.971499 199.328795 L 121.337105 200.138959 L 121.356488 200.538313 L 121.020583 200.592637 L 121.295491 201.195093 L 121.296535 201.753449 L 120.908868 202.649337 L 121.124526 203.032376 L 120.621967 203.355405 L 120.637853 204.048610 L 120.399877 204.078020 L 120.170367 204.489876 L 119.679406 204.089674 L 119.692248 203.599330 L 119.398881 203.448805 L 118.920729 202.586009 L 118.439499 202.385305 L 117.920778 202.436923 L 117.600397 202.200046 L 117.545754 201.959816 L 118.033526 201.182394 L 117.485175 200.734642 L 117.185189 201.029296 L 116.728587 200.952279 L 116.195133 201.210430 L 116.066497 201.061124 L 116.551851 200.553651 L 116.345989 200.424432 L 116.083319 199.689668 L 116.263025 199.482861 L 116.261012 199.021465 L 115.873609 198.517850 L 116.425083 198.154316 L 116.229227 197.925036 L 116.280484 197.655330 L 116.450899 197.620192 L 116.652703 197.885731 L 117.077894 197.862840 L 117.141035 197.663697 L 117.334022 197.647612 L 117.299082 197.156388 L 116.731863 197.145976 L 116.536304 196.778133 L 117.478391 196.679819 L 117.393073 196.427397 L 117.538839 196.178920 L 117.042535 196.304434 L 117.121190 196.014200 L 116.858488 195.645389 L 117.571218 195.370295 Z ' fill='#201829' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2023&amp;lt;br/&amp;gt;Items per Head: 20'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c7)'>\n <path id='svg_3c9aaa3e0504a623_e457' d='M 168.847569 102.223454 L 169.526756 102.777138 L 169.722733 103.640318 L 169.540400 103.973573 L 169.999850 104.347595 L 169.687089 104.598908 L 170.004648 104.873955 L 169.944658 105.545943 L 169.718984 105.739622 L 168.727481 105.702997 L 168.075754 104.828825 L 168.186711 104.212231 L 167.878513 103.308558 L 168.113960 102.716833 L 168.847569 102.223454 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_3c9aaa3e0504a623_e458' d='M 171.095278 102.158168 L 170.964411 102.463058 L 170.883898 102.312939 L 171.095278 102.158168 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_3c9aaa3e0504a623_e459' d='M 171.362412 101.458730 L 171.356870 101.951020 L 171.041932 102.068211 L 171.179276 101.553723 L 171.362412 101.458730 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_3c9aaa3e0504a623_e460' d='M 172.132896 100.310077 L 172.443833 100.808404 L 172.213321 100.921373 L 172.626495 101.170618 L 172.631993 101.362913 L 172.870794 101.389025 L 173.019407 101.934199 L 173.215901 101.741564 L 173.327737 101.923963 L 173.642906 101.666735 L 173.910579 102.153210 L 174.177218 101.942027 L 174.413919 102.094027 L 174.335670 102.315906 L 174.540686 102.292224 L 174.796594 102.563822 L 174.911937 102.452909 L 175.308883 102.891426 L 175.844537 103.022062 L 176.107207 103.816560 L 176.313068 103.945779 L 175.827715 104.453252 L 175.947775 104.599754 L 176.489805 104.344407 L 176.946407 104.421424 L 177.246393 104.126770 L 177.794744 104.574522 L 177.793095 104.761538 L 177.306972 105.351944 L 177.571116 105.707287 L 177.350456 105.908322 L 177.448472 106.039542 L 176.824863 106.321913 L 176.693104 106.844726 L 176.838166 107.066814 L 176.605302 107.692567 L 176.399265 107.880024 L 176.008992 107.445664 L 175.319383 107.518689 L 174.886804 108.146642 L 174.414974 109.530192 L 174.283117 109.596423 L 174.182605 109.183975 L 174.013509 109.402985 L 173.411009 109.318877 L 172.700324 109.825670 L 172.704117 110.139727 L 172.925877 110.301787 L 172.880084 110.605346 L 172.301773 110.752892 L 172.121847 110.625850 L 171.778874 110.811383 L 171.692786 110.644541 L 171.112770 110.688189 L 171.052411 110.416680 L 170.856378 110.343016 L 170.475693 110.996751 L 169.997816 111.146259 L 169.939017 110.484549 L 170.413948 109.372882 L 171.367139 108.387432 L 171.566826 107.681092 L 171.502856 107.225213 L 172.024215 106.778975 L 172.259440 106.056191 L 172.948278 105.734669 L 173.161445 105.169663 L 172.740960 104.534705 L 172.939953 104.470397 L 172.797592 103.942535 L 172.272231 103.514034 L 171.838711 103.400668 L 171.720101 103.023438 L 171.299831 102.604909 L 171.323160 102.226491 L 171.688298 101.703391 L 171.481548 101.150719 L 171.495852 100.464594 L 172.132896 100.310077 Z ' fill='#1E1626' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Ayrshire and Arran&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.13'/>\n <path id='svg_3c9aaa3e0504a623_e461' d='M 185.356159 110.219735 L 185.042386 109.416453 L 185.338359 108.653158 L 184.935684 108.643473 L 185.195045 108.329040 L 185.103571 108.073197 L 184.660602 107.984527 L 184.420591 108.240315 L 184.092515 108.205605 L 183.695393 107.219803 L 183.521239 107.117225 L 183.189150 107.270213 L 182.896421 106.906075 L 182.372379 107.310585 L 182.185922 107.234602 L 182.305685 106.679533 L 182.712758 106.249702 L 182.230373 106.054329 L 181.951112 106.443315 L 181.128887 106.533856 L 180.684928 106.138328 L 180.803614 105.467991 L 181.058137 105.137551 L 181.056708 104.587221 L 180.781801 103.984765 L 181.117706 103.930441 L 181.098322 103.531087 L 181.727506 102.792222 L 181.437119 102.619939 L 181.238723 102.002354 L 181.552506 101.562958 L 181.946055 101.405626 L 182.105366 101.789654 L 182.456102 101.755583 L 182.589102 102.014525 L 183.210315 101.702523 L 183.593419 102.826723 L 183.837387 102.687148 L 183.760920 102.502440 L 183.959316 102.228457 L 184.822298 101.516737 L 184.987249 101.834446 L 185.382557 101.461160 L 185.589088 101.542563 L 186.027385 101.221579 L 186.281908 101.421569 L 186.770725 101.201843 L 187.212100 101.426022 L 187.375918 101.220314 L 187.557438 101.300079 L 187.712955 100.925991 L 187.458542 100.650029 L 187.567827 100.413756 L 187.909318 100.411393 L 188.167414 100.750518 L 188.883607 99.993018 L 189.122805 100.174603 L 189.841560 100.163708 L 190.432505 100.358893 L 190.468149 100.666509 L 190.848779 100.893963 L 191.149314 101.651024 L 190.784472 101.878446 L 190.787342 102.257844 L 190.566088 102.542207 L 190.158972 102.785307 L 190.222751 102.942122 L 189.659942 103.599814 L 189.756188 103.736069 L 189.262226 103.660702 L 189.051626 103.841760 L 189.241611 103.882922 L 189.376316 104.477814 L 189.711473 104.781087 L 189.978914 105.765240 L 190.227622 105.850150 L 189.768886 106.337702 L 189.565015 106.281861 L 189.041632 106.582165 L 189.025965 107.083977 L 188.736380 107.302999 L 188.064175 107.230710 L 187.748446 107.616254 L 187.477673 107.677714 L 186.858747 108.379725 L 187.104166 108.539904 L 186.962029 108.825410 L 186.714191 108.849015 L 186.452301 109.438300 L 185.592222 109.855905 L 185.356159 110.219735 Z ' fill='#362850' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Borders&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 18.38'/>\n <path id='svg_3c9aaa3e0504a623_e462' d='M 177.650936 105.784898 L 178.681947 105.978137 L 179.160099 106.840933 L 179.453466 106.991458 L 179.440624 107.481802 L 179.899425 107.889315 L 180.078086 107.832616 L 180.161094 107.470148 L 180.399071 107.440738 L 180.371805 106.782606 L 180.586638 106.580472 L 180.885084 106.424570 L 181.951112 106.443315 L 182.230373 106.054329 L 182.712758 106.249702 L 182.305685 106.679533 L 182.173531 107.220693 L 182.372379 107.310585 L 182.896421 106.906075 L 183.189150 107.270213 L 183.521239 107.117225 L 183.695393 107.219803 L 184.092515 108.205605 L 184.420591 108.240315 L 184.660602 107.984527 L 185.103571 108.073197 L 185.195045 108.329040 L 184.935684 108.643473 L 185.338359 108.653158 L 185.042386 109.416453 L 185.362613 110.212489 L 184.644472 110.933114 L 183.996533 110.880857 L 184.169564 111.083101 L 184.034695 111.545256 L 183.296937 112.098255 L 182.276012 111.942686 L 181.757594 112.083960 L 181.420792 112.431205 L 181.094090 112.494368 L 181.156431 112.355032 L 180.962705 112.412570 L 181.045078 112.145780 L 180.858413 112.533497 L 180.456594 112.665685 L 179.857426 113.350457 L 179.439030 113.221876 L 179.028494 113.347709 L 179.116505 113.168278 L 178.976286 113.153952 L 177.389519 114.214560 L 176.898508 114.188122 L 176.656115 113.812937 L 176.578202 114.231218 L 176.337631 114.004558 L 176.157593 114.069559 L 175.509366 113.346042 L 174.970839 113.178231 L 175.071141 113.339422 L 174.533995 112.850526 L 174.837109 113.763147 L 174.639097 114.468622 L 174.748097 114.841545 L 174.414660 115.241961 L 173.386735 114.692205 L 172.988468 114.018682 L 172.233455 113.382293 L 171.806107 113.286469 L 171.467234 112.977464 L 171.129592 113.036784 L 170.520287 113.575966 L 170.812675 114.802635 L 171.077313 115.043514 L 170.970072 115.560982 L 171.136408 115.610073 L 170.642865 115.513497 L 170.348695 115.238755 L 170.311248 114.933492 L 170.485797 114.811849 L 170.421622 114.457550 L 170.194992 114.374388 L 170.146690 113.905238 L 169.160100 112.787725 L 168.925686 112.091772 L 169.090363 111.071042 L 169.622291 110.886633 L 169.938364 111.486843 L 169.746142 111.569843 L 169.751385 111.890531 L 170.039188 112.268124 L 170.298192 112.034900 L 169.997816 111.146259 L 170.475693 110.996751 L 170.782770 110.362421 L 171.009862 110.373196 L 171.112770 110.688189 L 171.692786 110.644541 L 171.778874 110.811383 L 172.121847 110.625850 L 172.301773 110.752892 L 172.880084 110.605346 L 172.739519 109.760142 L 173.411009 109.318877 L 174.013509 109.402985 L 174.179746 109.183975 L 174.283117 109.596423 L 174.414974 109.530192 L 174.886804 108.146642 L 175.314765 107.523087 L 176.008992 107.445664 L 176.439505 107.871009 L 176.838166 107.066814 L 176.693104 106.844726 L 176.824863 106.321913 L 177.650936 105.784898 Z ' fill='#271D35' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Dumfries and Galloway&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 19.47'/>\n <path id='svg_3c9aaa3e0504a623_e463' d='M 175.593807 92.536293 L 175.823152 93.272926 L 176.800895 92.873000 L 177.105553 93.150996 L 177.162010 93.434545 L 176.918921 93.443230 L 176.739655 93.670378 L 176.458525 93.504690 L 176.468640 94.376061 L 176.167941 94.394586 L 176.167776 95.070365 L 176.492498 95.386896 L 176.999841 95.696173 L 177.233364 95.585018 L 177.504401 95.847875 L 177.726249 95.783085 L 178.151978 96.369752 L 178.424313 96.302850 L 178.605645 96.548303 L 178.786230 96.412245 L 178.849889 96.785565 L 179.235521 96.531151 L 179.527205 96.883581 L 180.003873 96.900513 L 180.341603 96.700655 L 180.641412 96.834226 L 180.501573 97.103934 L 180.125571 97.257879 L 180.250359 97.609197 L 180.005028 97.704124 L 180.241553 97.863401 L 179.652917 97.922024 L 179.425528 98.325039 L 179.724063 98.720028 L 181.085942 99.167055 L 181.012038 99.306784 L 180.793774 99.402227 L 180.406426 99.257957 L 179.927604 99.875937 L 179.432389 100.014798 L 179.225186 100.318852 L 178.854737 100.461517 L 178.942462 100.347943 L 178.303175 99.925709 L 178.608690 99.673341 L 178.091365 99.621788 L 178.032127 99.373333 L 177.759836 99.361393 L 177.746786 99.054822 L 177.460126 99.022674 L 177.536725 98.800794 L 177.014793 98.792174 L 176.731904 99.043399 L 176.560665 98.743633 L 176.310836 98.982743 L 175.680993 98.755673 L 175.781494 99.513954 L 175.378655 99.587617 L 175.144746 99.308048 L 174.814076 99.407702 L 174.596549 98.998872 L 174.438173 99.015363 L 174.265338 98.453939 L 174.430938 98.292397 L 173.640355 98.094242 L 173.668040 97.656946 L 173.334487 97.504167 L 172.991602 96.537627 L 173.017076 95.628281 L 173.270829 95.556048 L 173.130430 95.346052 L 173.302604 95.057611 L 172.438083 95.001275 L 172.465811 94.755866 L 171.995245 94.409374 L 172.309194 93.845960 L 172.847980 93.663781 L 172.909494 93.355495 L 173.320140 93.365774 L 173.776478 92.924179 L 174.268417 92.852606 L 174.416843 92.632550 L 174.617768 92.765968 L 175.389199 92.375993 L 175.593807 92.536293 Z ' fill='#2E2242' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Forth Valley&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 18.95'/>\n <path id='svg_3c9aaa3e0504a623_e464' d='M 182.571709 78.127668 L 183.009741 78.151855 L 183.671161 78.611591 L 184.632093 78.921681 L 185.818127 78.414207 L 185.964827 78.590580 L 186.188136 78.496874 L 186.517895 78.721262 L 186.696919 78.605291 L 187.614170 78.724362 L 188.024979 78.942240 L 189.100321 78.895052 L 189.431849 78.575133 L 190.118644 78.884277 L 190.603777 78.521613 L 191.353274 78.552551 L 191.467166 78.791297 L 191.766942 78.719437 L 192.178753 79.352215 L 192.570817 79.589158 L 192.663876 80.629558 L 192.930558 80.950686 L 192.757439 80.959471 L 192.733306 81.190202 L 192.887317 81.355196 L 192.320209 82.124758 L 192.310159 82.364362 L 191.547866 83.173833 L 191.102258 84.145419 L 190.891306 84.910703 L 191.084304 84.925678 L 191.257676 85.578884 L 191.115209 85.839411 L 190.891581 85.838960 L 190.011470 87.500286 L 190.062737 88.222439 L 189.819780 88.791306 L 189.276496 89.563496 L 188.496313 90.124065 L 188.270300 90.187259 L 187.815897 89.722752 L 187.238421 89.739903 L 186.880593 89.016552 L 186.948836 88.485528 L 186.780895 88.124687 L 186.262888 87.571938 L 185.865656 87.540878 L 185.810024 87.355731 L 185.415540 87.230833 L 185.000222 87.470073 L 184.518278 87.389978 L 184.135668 87.559624 L 183.870810 88.412469 L 182.784387 87.901938 L 182.775426 88.162399 L 182.197334 88.546216 L 181.799498 88.396692 L 181.555584 88.559685 L 181.078807 88.311154 L 180.921640 88.407400 L 180.784649 87.829649 L 180.167856 87.797711 L 179.929276 88.022768 L 179.731923 87.772533 L 179.443757 87.894077 L 179.339914 87.769344 L 179.700095 87.043156 L 179.652983 86.494749 L 179.825322 86.267163 L 179.716146 86.025119 L 179.949175 85.997907 L 180.361250 85.556093 L 180.606813 85.607876 L 181.165026 84.946061 L 181.724735 84.840460 L 181.886905 84.275451 L 181.664364 84.080408 L 181.772067 83.567711 L 181.482581 83.268517 L 182.220148 82.256198 L 182.049513 81.826147 L 181.668938 81.698391 L 181.465814 81.360200 L 180.420093 81.734101 L 180.153563 81.628630 L 180.243290 80.602303 L 180.038913 80.494117 L 180.116864 80.024233 L 179.794867 79.191365 L 180.655068 78.787108 L 181.334177 78.858462 L 181.562621 78.646972 L 181.559301 78.371856 L 182.571709 78.127668 Z ' fill='#395E9C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Grampian&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.96'/>\n <path id='svg_3c9aaa3e0504a623_e465' d='M 170.632435 75.020883 L 170.600041 74.901194 L 169.853348 74.601209 L 169.548998 73.980381 L 169.175085 73.901364 L 169.234268 73.666598 L 168.954107 73.351208 L 169.192138 73.000187 L 169.602552 73.496204 L 169.739885 73.338543 L 169.968845 73.552387 L 170.206382 73.102491 L 169.989021 72.878807 L 170.254153 72.874849 L 170.021234 72.669582 L 170.408187 72.560593 L 169.967196 72.445349 L 170.174113 72.309566 L 169.957598 72.365297 L 170.015407 72.193244 L 169.403947 71.436656 L 169.607346 71.080323 L 170.023819 71.581070 L 170.455738 71.307140 L 170.219631 71.197416 L 170.340614 71.069417 L 170.462335 71.312309 L 170.857313 71.296806 L 170.988092 71.538465 L 170.961485 71.215556 L 171.234755 71.337211 L 171.166644 71.131943 L 171.329088 71.099014 L 171.652106 71.403342 L 171.975950 71.314782 L 172.417006 71.830501 L 172.053681 71.368545 L 172.520728 71.320554 L 171.659308 71.269594 L 171.328428 70.951468 L 171.171481 70.997920 L 171.221067 70.477494 L 171.007553 70.492172 L 170.864734 70.087574 L 171.077995 70.071411 L 170.949171 69.954815 L 171.192810 69.346488 L 171.964186 69.820923 L 171.645565 69.492331 L 171.900143 69.412016 L 171.498018 69.431146 L 171.375705 69.323565 L 171.646774 69.332470 L 171.361631 69.158042 L 171.651612 68.883948 L 171.915022 68.939856 L 171.628853 68.820236 L 171.777895 68.747935 L 171.341402 68.407116 L 171.505220 67.932209 L 171.871227 67.735626 L 172.099529 67.365660 L 172.181273 66.777014 L 172.498080 66.979038 L 173.009996 66.940843 L 173.338336 67.190352 L 173.349385 67.607540 L 173.546957 67.825836 L 173.278988 68.091639 L 173.511830 67.898015 L 173.361699 68.237658 L 173.593574 67.803319 L 173.367581 67.562297 L 173.675208 67.388199 L 173.539481 67.143736 L 173.699781 67.094260 L 173.884885 67.553073 L 174.404255 67.786971 L 173.712369 68.983361 L 174.299476 68.619365 L 174.462745 68.161059 L 174.616448 68.129560 L 174.591216 68.303405 L 174.878778 67.452188 L 175.396400 67.506610 L 175.667305 67.876158 L 175.789784 67.774436 L 175.881038 68.163533 L 176.094661 67.967446 L 175.972568 68.386227 L 175.864134 68.435255 L 175.876332 68.529155 L 176.291408 68.033687 L 176.641749 67.953372 L 176.973014 68.180024 L 177.040355 68.044627 L 177.205086 68.115113 L 177.210276 67.884986 L 177.451935 68.019284 L 177.780837 67.679994 L 178.122326 67.880369 L 178.479373 67.308324 L 178.558281 67.778725 L 179.009067 67.665745 L 179.141287 67.842427 L 179.994847 67.786696 L 180.823570 67.103123 L 181.573176 67.126475 L 181.476160 67.301991 L 181.632084 67.433640 L 182.057000 67.263422 L 182.622141 67.484610 L 182.741673 67.234771 L 182.355854 66.926628 L 182.596854 66.544644 L 183.022606 66.903737 L 183.795828 66.711542 L 183.967475 66.983557 L 184.843551 66.940612 L 184.712924 67.514669 L 184.524050 67.567982 L 184.558683 67.905613 L 184.145783 68.439715 L 184.202427 68.931192 L 184.663724 69.033342 L 184.253287 70.265102 L 183.508629 71.062766 L 182.406858 71.530824 L 181.623476 72.655508 L 180.295426 73.731234 L 179.676423 74.028867 L 179.405078 74.661370 L 178.490928 75.056019 L 178.256635 76.166124 L 178.289003 76.387268 L 178.323856 76.253465 L 178.592287 76.373030 L 177.597074 76.511979 L 176.949695 76.187267 L 176.484396 76.336342 L 176.141015 76.073990 L 176.435415 76.356824 L 177.098505 76.311780 L 177.320639 76.660966 L 177.433365 76.543291 L 178.121777 76.704130 L 178.012271 76.786644 L 178.712511 76.447188 L 179.231728 76.809183 L 179.548425 76.420141 L 179.823519 76.345665 L 178.443091 78.417131 L 178.039054 78.408468 L 178.003530 78.126217 L 177.847628 78.078830 L 177.212464 78.487365 L 176.471982 78.547416 L 175.583868 79.563607 L 176.852712 78.610591 L 177.241390 78.591889 L 177.497002 78.786481 L 178.025365 78.531606 L 178.308958 78.624762 L 177.578416 79.460280 L 177.634577 79.870893 L 177.128113 79.941961 L 176.658813 80.740361 L 175.593796 80.718141 L 176.187016 80.775126 L 175.738604 80.891249 L 176.332121 80.929115 L 176.741722 80.755533 L 177.041169 80.855595 L 177.894091 80.081449 L 177.721884 79.765521 L 178.053325 79.519870 L 179.087667 79.711098 L 179.792943 79.207362 L 180.116864 80.024233 L 180.038913 80.494117 L 180.243290 80.602303 L 180.153563 81.628630 L 180.420093 81.734101 L 181.465209 81.360035 L 181.604071 81.645892 L 182.105090 81.907067 L 182.178754 82.432880 L 181.468783 83.359717 L 181.772067 83.567711 L 181.664364 84.080408 L 181.886905 84.275451 L 181.825995 84.629222 L 181.723361 84.841504 L 181.146863 84.960003 L 180.584273 85.623544 L 180.361250 85.556093 L 179.949175 85.997907 L 179.716146 86.025119 L 179.825322 86.267163 L 179.652983 86.494749 L 179.700095 87.043156 L 179.324852 87.734162 L 178.697779 87.877915 L 178.331827 87.569299 L 178.200772 88.151349 L 177.827838 88.269375 L 177.753020 88.111197 L 177.236937 88.178286 L 176.821454 87.957350 L 176.638505 88.456886 L 175.930074 88.666827 L 175.740639 88.996828 L 175.450658 88.884849 L 174.971902 89.583550 L 174.457632 89.180050 L 174.266273 89.575909 L 173.971125 89.717792 L 173.925828 90.533202 L 173.475822 90.741877 L 173.072873 90.703451 L 173.070510 91.123112 L 173.414968 91.167640 L 173.653494 90.990409 L 173.601270 91.378295 L 174.086732 92.015263 L 173.821215 91.956771 L 173.156816 92.243619 L 173.435802 92.645084 L 173.194693 92.987618 L 173.506882 93.177493 L 173.320140 93.365774 L 172.907571 93.356814 L 172.847980 93.663781 L 172.309194 93.845960 L 171.994915 94.411188 L 172.465811 94.755866 L 172.438083 95.001275 L 173.302604 95.057611 L 173.130430 95.346052 L 173.270829 95.556048 L 173.017076 95.628281 L 172.991326 96.533109 L 173.334487 97.504167 L 173.675560 97.690633 L 173.422993 98.443318 L 173.550299 98.763049 L 173.142249 98.961600 L 173.434373 99.161315 L 173.412318 99.772423 L 173.019715 99.746135 L 172.933957 99.574765 L 173.224224 99.579745 L 172.832654 99.382844 L 172.719344 98.995782 L 172.250038 98.799970 L 172.001573 97.989513 L 172.020593 98.528526 L 172.410684 99.107794 L 171.909174 99.150984 L 171.726934 98.773953 L 171.660789 98.223105 L 172.605418 96.477586 L 171.808788 97.719007 L 171.640373 97.598107 L 171.569933 96.861004 L 171.466002 96.911562 L 171.493488 97.555423 L 171.717269 97.880857 L 171.443419 98.319531 L 171.510955 99.127872 L 171.128323 99.041797 L 171.427038 99.337140 L 170.883359 100.604924 L 170.430077 100.464232 L 170.312039 99.470151 L 169.949385 98.788051 L 170.229526 100.124380 L 169.547426 99.665964 L 169.508945 99.324529 L 169.096870 100.120488 L 169.335396 100.932642 L 168.580952 100.606160 L 168.601803 100.325541 L 168.329947 100.035325 L 168.518504 99.321231 L 168.403116 98.660295 L 168.656375 98.654908 L 169.490343 97.264648 L 170.204392 96.951084 L 170.506038 96.339297 L 171.451089 95.650083 L 170.663479 96.024689 L 170.569521 95.877346 L 170.099460 96.776384 L 169.265207 97.256086 L 168.803042 98.020909 L 168.547005 97.992822 L 168.456220 98.519895 L 168.069212 98.802674 L 167.765519 98.503677 L 167.710791 99.105023 L 168.022651 100.354386 L 167.883130 100.435899 L 168.089058 100.458944 L 168.379698 100.901803 L 168.512072 101.548940 L 167.954045 101.831389 L 167.555549 102.329276 L 167.284973 103.109612 L 167.412469 103.945045 L 167.167937 103.992637 L 167.162934 104.495966 L 166.685552 105.639011 L 166.307556 105.724843 L 166.471137 105.877680 L 166.760920 105.710366 L 166.652734 105.829271 L 166.857671 106.550622 L 166.229785 107.175935 L 165.657840 107.135684 L 165.109323 107.337994 L 164.834350 107.124371 L 164.870577 106.398348 L 164.980467 106.017608 L 165.533077 105.465807 L 165.615950 103.869718 L 165.955736 103.170412 L 165.962773 102.558512 L 166.385237 102.226862 L 166.742999 101.556911 L 167.387828 101.133678 L 167.701996 100.525570 L 166.571924 101.652124 L 166.431469 101.614138 L 166.512356 101.206167 L 166.287551 101.296946 L 166.121423 101.138955 L 166.163972 100.547504 L 166.769056 99.575314 L 166.590175 99.568003 L 166.081898 100.066934 L 166.033852 99.671516 L 166.922594 98.443318 L 166.720900 98.514288 L 166.951582 98.210471 L 166.651139 98.407091 L 166.886752 98.068570 L 166.543795 98.395068 L 166.622828 98.497796 L 166.351814 98.895303 L 166.457526 98.533089 L 166.327076 98.711750 L 166.006696 99.511051 L 165.905601 99.449042 L 166.089814 99.135313 L 165.875036 99.287807 L 166.507936 98.045922 L 166.863718 97.580743 L 167.153094 97.569914 L 166.984603 97.321657 L 167.470891 96.461941 L 167.323295 96.435185 L 166.738766 97.114136 L 166.757731 96.769678 L 167.202866 96.060540 L 167.078107 95.812045 L 167.631255 95.602217 L 167.518443 95.438772 L 166.866137 95.639771 L 167.059091 94.639544 L 167.268427 94.449504 L 167.455910 94.568054 L 167.952818 94.333990 L 167.627894 94.316919 L 167.460216 94.510064 L 167.346048 94.327410 L 167.530866 93.894789 L 167.821318 93.699737 L 167.765680 93.405543 L 168.065749 93.185951 L 169.244527 93.213995 L 169.445859 93.482277 L 170.264545 92.882647 L 170.664590 91.988140 L 169.812690 93.201065 L 169.488220 93.366027 L 169.318948 93.147544 L 168.721254 93.025363 L 168.249193 93.154899 L 168.216935 92.719616 L 167.951461 92.954744 L 168.004410 92.796170 L 167.848498 92.874044 L 168.293478 92.213977 L 168.501330 92.531741 L 169.547283 91.931551 L 168.940220 92.099943 L 168.609252 92.381798 L 168.429645 92.134323 L 168.274426 92.182654 L 168.692041 91.402703 L 169.128457 91.015058 L 169.024251 90.800808 L 169.676644 90.429007 L 170.182315 90.573397 L 171.396561 90.168777 L 170.080879 90.473512 L 169.934191 90.285967 L 169.502392 90.244398 L 170.510710 88.647070 L 169.979290 88.387192 L 169.070373 88.299005 L 170.455023 88.675512 L 169.660724 89.551391 L 169.480491 89.872002 L 169.563961 90.019208 L 169.271353 90.257734 L 169.115286 90.145700 L 167.970977 91.231189 L 167.639382 91.191718 L 167.816427 91.327798 L 167.407221 91.953661 L 166.438395 92.593189 L 165.876301 92.127242 L 166.037040 91.784466 L 165.796535 92.129528 L 164.987943 91.850235 L 164.391931 90.985021 L 164.385334 90.607414 L 164.936214 90.606480 L 165.036045 90.550243 L 164.755409 90.521438 L 164.918953 90.394781 L 165.527774 90.994037 L 165.256375 90.559369 L 166.159960 90.066319 L 166.730300 90.408413 L 167.511186 90.311827 L 166.703418 90.363996 L 166.358795 89.980122 L 165.965631 89.894794 L 165.517714 90.394726 L 164.796309 90.179178 L 164.607478 90.344701 L 163.997084 90.041977 L 163.204688 90.075995 L 162.942578 89.769632 L 162.950384 89.559691 L 163.246576 89.467997 L 163.203313 89.262235 L 163.523364 89.172354 L 164.623365 89.156522 L 164.753321 88.969451 L 165.069468 89.377073 L 165.361537 89.349587 L 165.273197 88.994628 L 165.911868 88.940645 L 165.272867 88.929705 L 165.351202 88.676997 L 165.662677 88.821739 L 165.418434 88.696787 L 165.513976 88.419010 L 166.440594 88.341719 L 166.749232 88.026495 L 166.668137 87.915417 L 166.397221 88.271079 L 165.982486 88.118112 L 166.424267 87.831188 L 166.354177 87.701233 L 165.334271 87.910129 L 165.096295 87.699474 L 165.314206 87.516415 L 165.594511 87.609374 L 165.266545 87.336930 L 165.568421 87.097150 L 165.875597 86.241964 L 166.502735 86.203273 L 166.612439 86.543235 L 167.083663 86.826235 L 167.850477 86.567445 L 167.179371 86.693640 L 166.917757 86.515584 L 166.803414 85.988540 L 166.422520 86.082202 L 166.279415 85.828647 L 166.157046 85.874989 L 166.063977 85.603808 L 166.601664 84.982784 L 167.119703 84.891485 L 167.470066 85.018021 L 167.925118 85.506419 L 167.954705 85.298326 L 168.795675 85.212954 L 167.883295 85.255063 L 167.669771 84.855202 L 167.029351 84.710559 L 166.787306 84.404142 L 167.292801 83.866224 L 167.140648 83.538357 L 167.519718 83.298313 L 167.978178 83.178858 L 168.547309 83.884321 L 168.760339 83.777641 L 168.064705 83.149943 L 168.446346 82.691646 L 168.013965 83.159782 L 166.632350 82.970006 L 166.746572 82.571246 L 167.017938 82.458695 L 166.987418 82.268006 L 167.994834 82.177916 L 168.576576 81.535825 L 167.891277 82.112730 L 167.339286 81.981279 L 167.572909 81.728361 L 167.488383 81.534913 L 166.601323 82.135631 L 166.316257 82.173507 L 166.201464 81.830600 L 166.095257 81.959401 L 166.182443 81.104027 L 165.947226 80.974687 L 165.841998 80.584976 L 166.161938 79.290261 L 166.332903 79.231550 L 166.753333 79.771052 L 166.984218 79.831081 L 166.984164 79.632850 L 167.031989 79.927394 L 167.341376 80.211822 L 167.325818 79.782266 L 167.534824 80.093521 L 167.532020 79.956694 L 168.111464 80.005268 L 168.200531 79.841944 L 167.765159 79.672287 L 167.240061 79.778308 L 166.721175 78.797761 L 166.317841 78.581389 L 166.547626 77.877971 L 166.894503 77.761748 L 167.230320 78.006948 L 167.314878 77.871253 L 167.178623 77.527092 L 166.433173 77.227250 L 166.500570 75.898121 L 167.274639 75.773609 L 167.426484 76.681019 L 167.815096 77.115149 L 167.706284 76.807808 L 167.984280 76.803740 L 167.873015 76.667134 L 167.995187 76.257961 L 167.612665 76.002460 L 167.542905 75.577027 L 167.817988 75.163028 L 168.186007 75.263507 L 168.317898 75.881531 L 168.753017 76.083820 L 169.086316 75.414858 L 169.785842 76.043304 L 170.292161 76.236060 L 169.619121 75.474998 L 169.273079 75.384986 L 169.216600 75.150440 L 169.479534 75.064572 L 169.698864 75.383656 L 170.280430 75.370605 L 170.989170 75.928159 L 171.327493 76.528614 L 171.142136 75.972225 L 170.385989 75.283077 L 170.632435 75.020883 Z M 175.682441 68.517406 L 175.641743 68.535807 L 175.686043 68.756248 L 175.687370 68.753553 L 175.840963 68.787197 L 175.678629 68.519866 L 175.682441 68.517406 Z M 171.936965 68.949028 L 172.165902 69.261611 L 172.183042 69.051890 L 171.936965 68.949028 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e466' d='M 184.264426 66.272706 L 184.330458 66.592746 L 184.129632 66.681538 L 184.264426 66.272706 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e467' d='M 176.298611 67.709019 L 176.486452 67.736286 L 176.419439 67.893342 L 176.298611 67.709019 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e468' d='M 170.945323 69.609477 L 170.987983 69.814690 L 170.814544 69.833711 L 170.748137 69.694794 L 170.945323 69.609477 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e469' d='M 169.511748 99.759088 L 170.209845 100.320468 L 170.133632 100.542557 L 170.313381 100.596068 L 170.330136 100.852878 L 170.558713 100.806491 L 170.686271 101.715694 L 170.506423 101.889220 L 170.643415 102.205181 L 170.467502 102.300261 L 170.226282 101.807201 L 170.011724 101.590445 L 169.857097 101.647648 L 169.803872 100.766240 L 169.280754 100.230753 L 169.231003 100.037029 L 169.511748 99.759088 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e470' d='M 169.242163 74.017455 L 169.401198 74.218379 L 169.303457 74.312987 L 169.149754 74.238829 L 169.242163 74.017455 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e471' d='M 168.555995 74.664701 L 168.629329 74.797736 L 168.480957 74.828575 L 168.555995 74.664701 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e472' d='M 168.226709 91.903394 L 167.644329 92.647502 L 166.999555 93.069637 L 167.201470 92.669931 L 167.049031 92.694394 L 167.475794 92.515524 L 167.930352 91.919830 L 168.226709 91.903394 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e473' d='M 167.669254 76.093571 L 167.854819 76.431960 L 167.622615 76.270892 L 167.669254 76.093571 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e474' d='M 167.660876 93.540368 L 167.264799 94.161998 L 167.012639 94.055736 L 167.206528 93.722327 L 167.660876 93.540368 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e475' d='M 162.872378 77.524926 L 163.239100 77.554018 L 163.191988 77.745410 L 163.520560 77.990489 L 163.589077 78.417912 L 163.868811 78.492169 L 164.195392 79.082696 L 164.022020 81.007605 L 163.645292 81.243591 L 164.134604 81.441064 L 163.979065 81.732947 L 164.272299 82.334522 L 163.869735 82.606934 L 164.120542 82.439488 L 164.522380 82.464599 L 164.615614 82.724619 L 164.374944 83.003385 L 164.739137 82.794379 L 165.374016 83.135320 L 165.527499 83.422574 L 166.500679 83.060007 L 166.782469 83.112891 L 166.649270 83.239163 L 167.195368 83.335969 L 167.013464 83.902847 L 166.357311 84.342463 L 166.120412 84.269756 L 166.099127 84.587432 L 166.237251 84.649100 L 166.058920 84.919784 L 165.724807 85.059613 L 165.207559 85.833913 L 164.676469 86.083389 L 164.443715 85.726287 L 164.726911 85.422036 L 164.759808 84.818305 L 165.810608 84.118845 L 164.832261 84.289557 L 164.605565 83.583675 L 164.617120 84.051921 L 164.209586 84.768830 L 164.014709 84.598855 L 164.071715 84.003777 L 163.718242 83.830778 L 163.654968 84.124936 L 162.641548 84.237960 L 162.924547 83.792902 L 162.398679 83.827260 L 162.275376 83.414744 L 162.493947 83.389348 L 162.553647 83.182541 L 162.155481 83.330087 L 161.682276 82.546727 L 161.699318 82.319965 L 162.060928 82.163613 L 162.067799 81.991450 L 162.695091 82.546893 L 162.250594 82.004533 L 162.264051 81.803630 L 161.793706 82.086882 L 161.918175 81.764798 L 161.745660 81.630609 L 161.769155 81.289229 L 161.713897 81.179692 L 161.463210 81.598451 L 161.467037 81.180670 L 161.167018 81.336692 L 161.190932 81.949890 L 161.055424 82.019101 L 160.194828 81.493727 L 160.062234 80.904696 L 159.921669 80.760613 L 159.765052 80.840213 L 159.849270 80.392462 L 160.243797 80.518645 L 160.077132 80.093686 L 160.324948 79.740432 L 160.773788 80.636880 L 161.018086 80.615508 L 161.124821 80.799215 L 160.774019 79.907603 L 161.099347 79.841141 L 161.274775 80.036492 L 161.343238 79.890386 L 160.847199 79.314119 L 160.756868 79.392411 L 160.938387 78.615363 L 161.271356 78.879066 L 161.351418 79.379416 L 161.738403 79.587718 L 161.990508 80.027884 L 162.233486 79.814260 L 162.127444 80.293500 L 162.422592 79.698323 L 162.942941 80.634418 L 162.862626 80.297326 L 162.996704 80.294544 L 162.631488 79.870332 L 162.453817 79.289436 L 162.722170 78.999302 L 162.493287 79.010451 L 162.328534 78.299435 L 162.829554 77.974162 L 162.872378 77.524926 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e476' d='M 167.013408 94.676761 L 166.697756 95.452974 L 166.517094 95.044582 L 167.013408 94.676761 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e477' d='M 166.785657 95.882640 L 166.911215 96.170201 L 166.744758 96.312691 L 166.785657 95.882640 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e478' d='M 166.607272 95.380960 L 166.737996 95.673117 L 166.564887 96.422910 L 166.388425 95.997202 L 166.607272 95.380960 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e479' d='M 163.567067 90.476085 L 163.966387 90.713897 L 163.945234 90.948531 L 164.445089 91.470320 L 164.637856 92.192846 L 165.714187 92.336247 L 165.901148 92.662455 L 166.166941 92.686918 L 166.494126 93.144818 L 166.641563 93.104237 L 166.612548 93.521017 L 166.427478 93.334264 L 166.609470 93.604531 L 166.403708 93.988009 L 166.146161 93.883286 L 166.212458 93.598935 L 165.987181 93.635965 L 166.060184 93.814692 L 165.633629 94.159458 L 166.207621 93.966405 L 166.288705 94.137315 L 165.312886 94.818646 L 164.936874 94.662908 L 165.225161 94.404922 L 165.062882 94.260156 L 164.644805 94.654332 L 164.270057 94.623273 L 163.872989 94.955911 L 163.639026 94.827111 L 163.189735 95.022649 L 162.782278 94.912154 L 162.460337 94.957001 L 162.345355 95.214172 L 162.302312 95.095378 L 162.041852 95.167501 L 161.759348 94.834148 L 161.539622 94.875102 L 161.795015 94.165175 L 162.202482 94.223127 L 162.355141 94.323452 L 162.260357 94.475649 L 162.542025 94.556580 L 162.512132 94.254781 L 162.895082 94.406658 L 163.484004 94.311710 L 164.094671 94.060672 L 164.235402 93.800872 L 162.884582 94.087674 L 162.821748 93.752562 L 163.219695 93.440373 L 163.276262 93.134230 L 163.909327 92.998723 L 164.306778 92.528432 L 163.413803 92.729742 L 163.297041 92.377917 L 162.779684 91.993384 L 162.386310 92.042145 L 162.034046 91.855512 L 162.067250 91.648211 L 162.459413 91.364189 L 162.240688 91.380989 L 162.203252 91.005581 L 162.558605 91.062907 L 162.654907 90.926530 L 163.094907 91.314142 L 162.867431 91.054451 L 162.867101 90.701032 L 163.089520 90.847667 L 163.080229 90.606040 L 163.567067 90.476085 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e480' d='M 166.376441 77.385516 L 166.585777 77.396895 L 166.494303 77.517395 L 166.376441 77.385516 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e481' d='M 166.210820 96.213355 L 166.313113 96.621527 L 165.816051 96.686504 L 165.830893 96.462270 L 166.210820 96.213355 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e482' d='M 166.232743 95.773684 L 166.160454 96.198732 L 166.046550 96.073834 L 166.232743 95.773684 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e483' d='M 166.050069 96.831423 L 166.170898 97.308794 L 165.065158 98.975288 L 164.752716 99.949072 L 164.648653 100.075509 L 164.596099 99.942751 L 164.532771 100.222066 L 164.299137 100.209258 L 164.057467 101.107411 L 163.562559 101.038355 L 163.235527 100.580653 L 163.295612 99.716924 L 163.732095 99.180171 L 164.500776 99.105683 L 164.909828 98.880460 L 164.338586 99.061155 L 163.890470 98.878151 L 164.300676 98.127940 L 166.050069 96.831423 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e484' d='M 165.886966 82.012009 L 166.090309 82.303804 L 165.932758 82.288246 L 165.886966 82.012009 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e485' d='M 165.768610 82.893495 L 165.891198 83.050607 L 165.743157 83.133120 L 165.768610 82.893495 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e486' d='M 165.677025 101.961125 L 165.683798 102.509652 L 165.340043 102.974380 L 165.286830 102.590616 L 165.677025 101.961125 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e487' d='M 165.299693 79.195323 L 165.393257 79.390641 L 165.186559 80.085385 L 165.042971 79.684030 L 165.195828 79.648726 L 165.145824 79.350456 L 165.299693 79.195323 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e488' d='M 164.937863 82.345143 L 165.389518 82.599611 L 165.240982 82.996844 L 164.818683 82.801746 L 164.734905 82.557942 L 164.937863 82.345143 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e489' d='M 165.253406 87.384756 L 165.351587 87.482222 L 165.042642 87.564407 L 165.253406 87.384756 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e490' d='M 165.014825 80.006279 L 165.129212 80.469204 L 164.770307 81.060103 L 164.982556 81.946702 L 164.568337 82.293249 L 164.332670 82.022927 L 164.410402 81.141574 L 164.602861 80.674251 L 164.879757 80.760173 L 164.798013 80.325175 L 164.873325 80.238759 L 164.883880 80.449799 L 165.068753 80.300493 L 165.014825 80.006279 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e491' d='M 163.689601 86.931342 L 163.872769 87.199608 L 163.818401 87.632077 L 163.502914 87.834816 L 163.201916 87.643941 L 163.195232 87.421643 L 163.525782 87.292127 L 163.494668 87.036559 L 163.689601 86.931342 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e492' d='M 163.688325 92.765529 L 163.755898 92.858212 L 163.599281 92.835234 L 163.688325 92.765529 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e493' d='M 163.038010 99.249601 L 163.112499 100.804281 L 163.475538 101.415741 L 163.602216 102.403390 L 163.312214 102.720626 L 163.211724 102.640091 L 163.191219 102.895219 L 162.658700 103.070516 L 162.206770 102.984495 L 162.000458 103.444010 L 161.802611 103.592107 L 161.493995 103.535265 L 161.319897 103.410037 L 161.381027 103.064369 L 161.898429 102.517612 L 161.419013 101.717432 L 161.979513 101.213993 L 161.389559 101.077440 L 160.886328 101.971954 L 160.351631 102.367559 L 160.105662 102.076897 L 160.592225 101.395787 L 160.634664 101.028734 L 160.454354 100.878439 L 160.658632 100.689663 L 160.717287 100.160662 L 161.150362 100.118498 L 161.631416 99.740067 L 161.580698 100.408094 L 161.679528 99.845724 L 161.907664 99.917738 L 162.540123 99.348662 L 163.038010 99.249601 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e494' d='M 163.415727 84.209593 L 163.572289 84.389299 L 163.174837 84.629475 L 163.072258 84.393587 L 163.415727 84.209593 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e495' d='M 162.231838 92.332421 L 162.811524 92.340205 L 163.338490 92.729852 L 162.904548 92.845932 L 162.789535 92.702640 L 162.660514 92.879103 L 162.470473 92.606878 L 162.558924 92.468787 L 162.413027 92.669492 L 162.221723 92.561580 L 162.231838 92.332421 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e496' d='M 163.037845 96.857688 L 163.136015 97.015515 L 162.662130 97.729828 L 162.736486 97.939275 L 162.208089 98.456347 L 162.055815 98.175107 L 162.402362 98.111614 L 162.051527 97.987376 L 162.305501 97.450788 L 163.037845 96.857688 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e497' d='M 162.777660 88.064217 L 163.067861 88.123752 L 163.087816 88.343423 L 162.734232 88.332099 L 162.777660 88.064217 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e498' d='M 162.518036 85.445202 L 162.966381 85.768946 L 163.038670 85.978832 L 162.853841 86.077508 L 163.086716 86.172666 L 162.905747 86.697763 L 162.544467 86.998078 L 161.606908 86.044854 L 162.518036 85.445202 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e499' d='M 161.664971 81.900261 L 161.653130 82.083023 L 161.515215 82.062419 L 161.664971 81.900261 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e500' d='M 161.015953 85.232579 L 161.466784 85.289971 L 161.389327 85.435042 L 161.600807 85.591495 L 161.088792 85.392768 L 160.645548 85.506782 L 161.015953 85.232579 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e501' d='M 161.588878 94.095425 L 161.467169 94.495406 L 161.183158 94.583813 L 161.232711 94.287280 L 161.588878 94.095425 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e502' d='M 161.275589 89.895904 L 161.391801 90.115904 L 161.035578 90.748969 L 160.876224 90.700505 L 160.871705 90.936975 L 160.246007 91.265381 L 160.149366 91.096175 L 160.049755 91.287865 L 159.794957 91.165771 L 159.651588 91.409520 L 159.628555 91.062973 L 159.945747 91.006570 L 160.289160 90.476250 L 161.275589 89.895904 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e503' d='M 159.252268 91.417546 L 159.432028 91.805103 L 159.200022 91.814381 L 159.169589 91.975847 L 159.094386 91.797318 L 158.904086 91.829447 L 158.818523 92.243542 L 158.377829 92.219959 L 158.219740 92.730324 L 157.643440 92.595389 L 157.706988 92.156652 L 157.500071 91.965458 L 157.755804 91.763873 L 158.156004 91.644802 L 158.412006 91.820971 L 158.814905 91.552503 L 159.070927 91.646283 L 159.252268 91.417546 Z ' fill='#3A5692' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Highland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.46'/>\n <path id='svg_3c9aaa3e0504a623_e504' d='M 185.828516 98.481469 L 187.078813 98.620802 L 187.585243 99.272184 L 188.342337 99.453681 L 188.883607 99.993018 L 188.167414 100.750518 L 187.909318 100.411393 L 187.567827 100.413756 L 187.458542 100.650029 L 187.699773 101.033913 L 187.285763 101.425307 L 186.770725 101.201843 L 186.281908 101.421569 L 186.027385 101.221579 L 185.589088 101.542563 L 185.382557 101.461160 L 184.987249 101.834446 L 184.822298 101.516737 L 183.959316 102.228457 L 183.760920 102.502440 L 183.837387 102.687148 L 183.593419 102.826723 L 183.210315 101.702523 L 182.589102 102.014525 L 182.456102 101.755583 L 182.105366 101.789654 L 181.948034 101.405461 L 181.552506 101.562958 L 181.227552 102.041132 L 180.656640 101.848453 L 180.411825 101.542673 L 179.429025 101.915058 L 179.374162 101.650035 L 179.561652 101.475387 L 179.333230 100.919427 L 179.603937 100.643750 L 179.026405 100.733851 L 178.787066 100.481801 L 179.127445 100.392262 L 179.481029 99.988653 L 179.927604 99.875937 L 180.406426 99.257957 L 180.839237 99.403876 L 181.085942 99.167055 L 181.828160 99.349585 L 182.448086 99.254461 L 182.707612 99.502486 L 183.269531 99.378776 L 183.875351 99.901181 L 184.430673 99.875816 L 185.149550 99.532073 L 185.219399 99.122175 L 185.828516 98.481469 Z ' fill='#3B4D86' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lothian&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.98'/>\n <path id='svg_3c9aaa3e0504a623_e505' d='M 188.966858 57.794349 L 189.070130 57.955913 L 188.852581 57.961927 L 188.915470 58.267465 L 188.735808 58.369802 L 188.551749 58.239825 L 188.661892 57.888605 L 188.966858 57.794349 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e506' d='M 187.846033 58.679991 L 187.881567 58.857057 L 188.104074 58.891239 L 187.771193 59.376240 L 188.037227 59.340135 L 188.325383 59.027681 L 188.542591 59.067536 L 188.720504 58.776324 L 188.797333 59.130743 L 189.050306 59.231090 L 188.394857 59.218788 L 188.139081 59.660932 L 188.200133 59.894852 L 188.054830 59.652214 L 187.788334 59.927164 L 187.760957 59.670641 L 187.593489 59.822914 L 187.380052 59.735255 L 187.015144 60.348035 L 187.001940 59.892136 L 187.656004 59.316880 L 187.477298 58.833639 L 187.566178 59.061258 L 187.727644 59.020424 L 187.846033 58.679991 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e507' d='M 187.424272 60.614651 L 187.446656 60.850682 L 187.792621 60.874760 L 187.571345 60.934560 L 187.629177 61.185718 L 188.001397 61.118399 L 187.993349 61.685540 L 187.800581 61.587359 L 187.556141 61.731365 L 187.559747 61.418461 L 187.395455 61.295224 L 187.247843 61.376111 L 187.289908 61.691191 L 187.034605 61.651226 L 187.154972 61.271882 L 187.457531 61.149063 L 187.125617 60.727775 L 187.424272 60.614651 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e508' d='M 187.683567 60.681235 L 187.759913 60.783219 L 187.600745 60.828605 L 187.683567 60.681235 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e509' d='M 186.907936 63.763647 L 187.174674 63.807538 L 187.052437 63.936865 L 186.907936 63.763647 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e510' d='M 183.696426 60.672548 L 184.625287 61.057753 L 184.797230 61.285350 L 184.695124 61.371911 L 185.059252 61.699239 L 185.005873 62.117053 L 184.711132 61.985041 L 184.684602 62.294142 L 184.285556 62.440908 L 184.402615 62.530688 L 185.017934 62.447944 L 185.312137 62.769841 L 185.506047 62.389562 L 185.708467 62.474551 L 185.608340 62.681269 L 185.770003 62.686789 L 185.571421 63.005135 L 185.776072 63.071289 L 185.958296 62.765026 L 186.161595 62.824561 L 186.304898 62.671463 L 186.377275 63.038514 L 186.045065 63.148295 L 186.133329 63.495391 L 186.336177 63.575805 L 186.437492 63.498184 L 186.244252 63.269873 L 186.903230 62.936266 L 186.868609 63.590505 L 186.407466 63.642312 L 186.097563 64.163935 L 185.955690 63.923145 L 185.694944 63.869755 L 185.677336 63.921334 L 185.443709 63.875549 L 185.244971 63.080689 L 183.833627 63.680132 L 183.526044 63.243826 L 183.474864 62.764894 L 183.170767 63.172812 L 182.785245 62.963400 L 182.750030 62.352116 L 182.953879 61.870874 L 182.827398 61.271068 L 183.077171 60.957000 L 182.936508 60.869890 L 183.696426 60.672548 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e511' d='M 185.664833 63.957959 L 185.587362 64.184891 L 185.765968 64.128335 L 185.748685 64.362837 L 185.949203 64.386761 L 185.632814 64.545061 L 185.806109 64.804443 L 185.469369 65.105176 L 185.514084 65.855519 L 185.160369 65.798018 L 185.148274 65.199564 L 184.881086 64.944624 L 185.128045 64.890256 L 184.998298 64.711408 L 184.795339 64.787666 L 184.932243 64.619603 L 185.304286 64.703415 L 185.650405 64.509669 L 185.097447 64.380385 L 185.581546 64.346203 L 185.518801 64.084973 L 185.664833 63.957959 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e512' d='M 186.741303 59.576241 L 186.843805 59.801069 L 186.692883 59.741830 L 186.741303 59.576241 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e513' d='M 186.617142 59.524171 L 186.595538 59.760411 L 186.776970 59.871236 L 186.588260 60.259199 L 186.737686 60.783890 L 186.407905 60.937560 L 186.176658 60.260903 L 186.480085 60.258902 L 186.410061 59.717202 L 186.617142 59.524171 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e514' d='M 186.315639 61.520138 L 186.185629 62.018278 L 186.294443 62.250647 L 186.159012 62.371785 L 185.483498 62.214036 L 185.687688 61.633119 L 185.977404 61.894579 L 186.315639 61.520138 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e515' d='M 185.400148 58.167546 L 185.556336 58.316720 L 185.193451 58.693041 L 185.722090 58.854704 L 185.863193 59.327281 L 186.013719 59.305259 L 186.128831 59.549492 L 185.994699 59.519465 L 185.836169 59.803619 L 185.884247 59.461458 L 185.645216 59.193533 L 185.465730 59.104664 L 185.210382 59.430421 L 184.679215 58.537689 L 185.079405 58.568088 L 185.400148 58.167546 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e516' d='M 185.888030 57.859656 L 185.897408 58.495294 L 185.709644 58.642708 L 185.888030 57.859656 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e517' d='M 185.573586 60.496934 L 185.588627 61.087328 L 185.431065 60.681510 L 185.573586 60.496934 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e518' d='M 185.309718 61.464518 L 185.416343 61.622761 L 185.235670 61.703593 L 185.118678 61.520237 L 185.309718 61.464518 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e519' d='M 184.641691 60.118898 L 184.904999 60.400864 L 185.393728 60.378720 L 185.230260 60.598676 L 185.315490 60.926104 L 184.833083 61.037710 L 184.487262 60.790872 L 184.333130 60.439388 L 184.641691 60.118898 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e520' d='M 185.320328 61.019723 L 185.297635 61.230433 L 184.990493 61.189247 L 185.320328 61.019723 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e521' d='M 184.589028 64.394006 L 184.326984 64.607872 L 184.544643 64.621407 L 184.519498 64.847135 L 184.142210 64.813558 L 184.122970 64.598450 L 184.589028 64.394006 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e522' d='M 182.788939 63.356311 L 183.693029 64.045316 L 183.672095 64.509636 L 183.979403 64.755672 L 183.396089 65.159885 L 184.057233 64.926548 L 184.053221 65.168889 L 184.185463 65.180027 L 183.548011 65.193650 L 183.546879 65.354762 L 183.120544 65.267192 L 182.620953 64.170543 L 182.275967 64.097550 L 182.493197 63.482012 L 182.788939 63.356311 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e523' d='M 183.084164 63.266893 L 183.372099 63.497382 L 183.099534 63.466234 L 183.084164 63.266893 Z ' fill='#3C467B' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Orkney&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 16.45'/>\n <path id='svg_3c9aaa3e0504a623_e524' d='M 198.886850 45.033923 L 198.926573 45.184240 L 198.651842 45.296856 L 198.886850 45.033923 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e525' d='M 198.094750 39.968967 L 198.111758 40.467173 L 198.346601 39.979292 L 198.797024 40.286325 L 198.532783 40.400833 L 198.678559 40.763541 L 198.349592 40.690087 L 198.666905 41.171218 L 198.166104 41.723803 L 198.388457 41.948828 L 198.246529 42.071725 L 197.901301 41.880310 L 197.692241 42.134778 L 197.492415 41.959140 L 197.469877 41.523153 L 197.663886 41.542822 L 197.584769 41.228115 L 197.769807 40.755680 L 197.631991 40.641832 L 198.094750 39.968967 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e526' d='M 198.195295 42.567358 L 198.407599 42.627827 L 198.555002 42.983884 L 198.757939 42.786302 L 198.605280 43.358578 L 198.416625 43.118402 L 198.064922 43.072412 L 198.250047 43.355554 L 198.043845 43.436584 L 197.710217 42.864495 L 197.775964 42.605069 L 198.013940 42.727602 L 198.195295 42.567358 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e527' d='M 197.914814 42.007813 L 198.129438 42.103444 L 198.076664 42.246592 L 197.914814 42.007813 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e528' d='M 197.970237 45.573094 L 197.579074 46.277074 L 197.219465 46.243584 L 197.425470 45.816480 L 197.970237 45.573094 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e529' d='M 197.456793 42.746073 L 197.588727 42.846233 L 197.381316 43.030501 L 197.456793 42.746073 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e530' d='M 197.101450 41.348010 L 197.378534 41.507816 L 197.506488 42.509746 L 197.202138 42.474949 L 196.984908 42.177008 L 197.283024 42.784444 L 197.122669 42.989163 L 196.887507 42.922304 L 197.386978 43.235989 L 197.324694 43.623986 L 197.118107 43.607372 L 197.285564 43.815423 L 197.253009 44.244516 L 197.008656 44.349954 L 196.718917 44.149249 L 196.809161 44.499534 L 196.323500 44.692092 L 196.228650 44.888597 L 196.422484 44.939479 L 196.257786 45.067401 L 196.421384 45.207306 L 196.248495 45.073942 L 195.876111 45.421755 L 196.407201 45.276846 L 196.447057 45.729007 L 196.709441 45.088950 L 196.762929 45.259311 L 197.134543 44.825687 L 196.585367 45.662094 L 196.658536 45.820526 L 196.782664 45.521035 L 196.987932 45.589971 L 196.987437 45.978572 L 196.729670 46.119026 L 196.307458 46.053356 L 196.430564 46.405071 L 196.502798 46.210171 L 196.626168 46.406434 L 196.935488 46.351891 L 196.958686 46.610668 L 196.489561 46.911182 L 196.557859 47.102993 L 196.806082 46.965000 L 196.843353 47.175545 L 196.588941 47.172731 L 196.387081 47.429794 L 196.458644 47.167156 L 196.283128 47.226736 L 196.239765 47.064908 L 196.287471 47.352942 L 196.065271 47.536826 L 196.341948 47.504171 L 196.140100 47.896697 L 196.455192 47.612577 L 196.146290 48.243058 L 196.534958 47.846870 L 196.484207 48.319514 L 196.679502 48.527002 L 196.506724 48.530586 L 196.536827 48.775413 L 196.433555 48.624073 L 196.420010 48.899430 L 196.244328 48.769442 L 196.274113 49.048758 L 196.119936 49.127886 L 196.255785 49.767843 L 196.455467 49.939128 L 196.226209 49.802157 L 196.078794 49.945615 L 196.259434 50.691538 L 196.158395 50.417290 L 196.077838 50.587551 L 195.957646 50.399380 L 195.813882 50.473362 L 195.962803 50.912637 L 195.856508 51.333749 L 195.732314 51.312948 L 195.873175 51.484099 L 195.858574 51.758875 L 195.696032 51.784029 L 195.880289 51.881694 L 195.825646 52.167606 L 195.706861 51.883915 L 195.606635 52.134183 L 195.570287 51.629557 L 195.375750 51.794233 L 195.183181 51.728431 L 195.115070 51.428171 L 195.288003 51.342468 L 195.279768 51.022143 L 195.494359 51.016833 L 195.479626 50.745817 L 195.297744 50.738594 L 195.337874 50.600558 L 195.486883 50.706776 L 195.383446 50.376270 L 195.561668 50.205689 L 195.816487 49.165223 L 195.854353 48.616014 L 195.618454 48.736272 L 195.735326 47.958245 L 195.534511 48.397146 L 195.831363 47.462227 L 195.475800 48.354542 L 195.681607 47.280092 L 195.354256 47.906956 L 195.296546 47.363100 L 194.842560 47.245932 L 195.177904 47.467725 L 195.276635 47.993427 L 195.222157 47.801298 L 195.068178 47.919324 L 195.044354 47.706515 L 195.029423 48.173188 L 194.904581 48.353278 L 194.815634 48.079757 L 194.656544 48.578501 L 194.133644 48.038505 L 194.160196 47.872103 L 194.507018 47.866166 L 194.398612 47.816800 L 194.603693 47.668232 L 194.383550 47.740719 L 194.475805 47.545423 L 194.225042 47.348775 L 194.335394 47.564850 L 194.117592 47.919214 L 194.025326 47.578021 L 193.653514 47.839394 L 193.495577 47.687560 L 193.586458 47.569105 L 193.256623 47.500565 L 193.321094 46.974950 L 193.181519 46.845214 L 193.547361 46.602291 L 193.802049 46.617793 L 193.973070 46.853516 L 193.952895 46.669578 L 194.197369 46.784921 L 194.107917 46.626864 L 194.383275 46.459197 L 194.552975 47.008044 L 194.662646 46.830318 L 194.488163 46.614879 L 194.751756 46.728409 L 194.629827 46.561116 L 194.855655 46.337213 L 195.208864 46.865280 L 195.350573 46.635209 L 195.164106 46.410216 L 195.287079 46.138597 L 195.436616 46.234040 L 195.381742 45.959716 L 195.846876 46.058689 L 195.608449 45.833389 L 195.230909 45.848089 L 195.289279 45.534360 L 195.156795 45.757241 L 194.985159 45.667966 L 195.017714 45.236167 L 194.692276 45.275143 L 194.706349 44.927166 L 194.873894 44.846202 L 194.612730 44.834812 L 194.811621 44.598319 L 194.595194 44.625201 L 194.661557 44.367533 L 194.413400 44.832613 L 194.411113 44.444473 L 194.072944 44.370359 L 193.722449 44.583752 L 193.593758 44.410809 L 193.720526 44.136660 L 194.016080 44.201110 L 193.993685 43.789398 L 194.191476 43.561041 L 194.285369 43.862237 L 194.700687 44.190038 L 195.028213 44.089164 L 194.666988 44.110438 L 194.405319 43.787748 L 194.784135 43.342196 L 194.785730 42.760916 L 195.380632 43.017000 L 195.325725 42.676972 L 196.282304 42.579177 L 196.440405 42.298981 L 196.474322 42.740565 L 196.732914 42.933804 L 196.513518 42.663999 L 196.608401 41.448005 L 196.855063 41.415737 L 196.931475 41.684607 L 196.906682 41.383743 L 197.122384 41.488410 L 197.101450 41.348010 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e531' d='M 197.260926 48.441949 L 197.448327 48.487576 L 197.422050 48.724728 L 197.260926 48.441949 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e532' d='M 197.061485 47.972593 L 197.015088 48.353168 L 197.206612 48.304297 L 197.046093 49.085403 L 196.741215 48.879091 L 196.791163 48.518767 L 196.573746 48.231865 L 196.685802 48.090839 L 196.997827 48.248116 L 196.926033 48.069729 L 197.061485 47.972593 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e533' d='M 195.650009 49.170556 L 195.440233 49.869752 L 195.461013 49.402781 L 195.650009 49.170556 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e534' d='M 195.470450 49.170526 L 195.498174 49.199361 L 195.236999 49.861616 L 195.470450 49.170526 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e535' d='M 195.503790 49.071830 L 195.558424 48.910095 L 195.528046 49.074705 L 195.503790 49.071830 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e536' d='M 194.846254 45.587552 L 195.147350 45.860282 L 194.827509 46.145413 L 194.557648 45.786937 L 194.846254 45.587552 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e537' d='M 194.569357 46.189557 L 194.791887 46.363160 L 194.579638 46.562656 L 194.569357 46.189557 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e538' d='M 193.908367 47.805971 L 194.007647 48.018110 L 193.782864 47.936806 L 193.908367 47.805971 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e539' d='M 193.813484 55.842305 L 193.811615 56.213314 L 193.524383 56.349108 L 193.616407 55.860941 L 193.813484 55.842305 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e540' d='M 193.085757 46.137662 L 193.281493 46.318588 L 193.385522 46.175264 L 193.410414 46.446048 L 193.087241 46.465794 L 192.963717 46.254260 L 193.085757 46.137662 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e541' d='M 190.928797 48.451899 L 191.135604 48.674703 L 190.984704 49.041754 L 190.660475 48.747322 L 190.928797 48.451899 Z ' fill='#3A669E' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Shetland&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 14.55'/>\n <path id='svg_3c9aaa3e0504a623_e542' d='M 167.316143 60.287993 L 167.384254 60.483696 L 167.205098 60.513381 L 167.316143 60.287993 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e543' d='M 161.003601 73.333909 L 160.476463 73.838156 L 160.678037 74.267470 L 160.521123 74.360176 L 160.759495 74.363067 L 160.951800 74.768105 L 160.693045 74.835777 L 160.974779 75.261265 L 160.090767 75.009887 L 160.245073 75.197606 L 160.015892 75.197551 L 160.059562 75.375310 L 160.254319 75.389713 L 160.463699 75.904389 L 160.069215 75.788683 L 160.084443 76.153085 L 159.665112 75.759371 L 159.819244 76.008441 L 159.725747 76.149787 L 159.625301 76.019952 L 159.640484 76.316133 L 159.479283 76.217403 L 159.526910 76.489187 L 159.206816 76.373008 L 159.347535 76.595504 L 159.093738 76.648762 L 159.026990 76.884275 L 158.830188 76.830589 L 158.821557 76.988448 L 157.881746 75.583679 L 158.205644 75.646787 L 158.217354 75.866567 L 158.599127 75.668029 L 158.824745 75.275447 L 159.037324 75.278361 L 159.141608 74.832533 L 160.010406 74.957035 L 159.694083 74.657280 L 159.819607 74.541530 L 159.403673 74.487954 L 159.491069 74.340034 L 159.353087 74.436346 L 158.867789 74.088699 L 158.890933 74.226570 L 158.708259 74.241687 L 158.349947 74.028449 L 158.310422 73.691082 L 158.150232 73.749023 L 158.369848 73.360367 L 158.571103 73.517094 L 158.742067 73.266309 L 159.535211 73.084844 L 158.672087 73.238768 L 158.534986 73.131736 L 158.812157 72.995624 L 158.567364 72.962091 L 158.787365 72.664469 L 158.552081 72.893210 L 158.386504 72.836974 L 158.126539 72.103364 L 158.448293 71.669905 L 158.393156 71.373878 L 158.802152 71.394129 L 158.659773 71.231058 L 158.968389 70.666654 L 158.944465 70.812904 L 159.254851 70.985221 L 159.371338 70.801283 L 159.686112 71.097421 L 159.661132 71.222010 L 159.326162 71.197339 L 159.760820 71.427641 L 159.888300 72.312589 L 159.791110 71.523347 L 159.892423 71.626916 L 159.850644 71.428355 L 159.973234 71.511034 L 160.033527 71.290550 L 160.690747 71.428147 L 160.768357 71.751759 L 160.878907 71.705307 L 160.952669 71.541818 L 160.647495 71.401364 L 160.770688 71.195150 L 160.355513 70.656430 L 160.311205 70.403776 L 160.593390 70.342295 L 160.277616 70.317744 L 160.436157 70.037659 L 160.745654 70.032106 L 161.462616 69.489790 L 161.531981 69.637040 L 162.142089 69.406814 L 162.339968 69.031001 L 163.796401 68.098819 L 164.102654 67.677443 L 164.574220 68.319435 L 164.469717 68.562689 L 164.615944 68.929740 L 164.292485 69.494309 L 164.598243 69.846244 L 164.122169 70.126967 L 163.775314 70.696560 L 163.531841 70.719439 L 163.401577 71.130579 L 163.703333 71.438294 L 164.571581 70.808011 L 164.708067 70.876837 L 164.562752 71.334539 L 163.970687 71.800971 L 163.678320 71.472971 L 163.304275 71.675083 L 163.030348 71.357847 L 163.127341 72.082969 L 162.765325 72.225853 L 163.107551 72.202919 L 163.092763 72.342110 L 162.341783 72.167758 L 162.751493 72.425283 L 162.449023 72.647889 L 161.388283 72.822483 L 162.660711 72.822131 L 162.890959 72.567607 L 162.883318 72.902281 L 163.007666 72.814929 L 163.059669 73.016183 L 163.004147 73.354265 L 162.611951 73.331001 L 163.096941 73.472456 L 162.873093 73.944616 L 162.563553 73.720603 L 162.476917 73.846105 L 162.420063 73.681462 L 161.689863 73.807855 L 162.310503 73.889534 L 162.458270 74.057804 L 162.279664 74.670199 L 161.959998 74.782123 L 161.794970 74.404407 L 161.810637 74.903282 L 161.609658 74.787730 L 161.564800 74.959355 L 161.195164 74.301113 L 161.388393 74.859635 L 161.217153 74.727646 L 161.095993 74.836381 L 160.800736 74.287974 L 160.763553 73.676624 L 161.003601 73.333909 Z M 161.069584 73.239706 L 161.120182 73.167469 L 161.620015 73.206598 L 160.966071 73.104975 L 161.069584 73.239706 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e544' d='M 160.722422 75.277086 L 161.063999 75.402159 L 161.108418 75.586042 L 160.781836 75.629097 L 160.722422 75.277086 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e545' d='M 159.838330 70.520043 L 160.102089 70.588484 L 160.164527 70.900497 L 160.297737 70.811398 L 160.482445 71.312254 L 159.945483 71.193084 L 160.049700 70.973424 L 159.838330 70.520043 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e546' d='M 158.774336 74.613962 L 158.905721 74.984478 L 158.720353 75.127461 L 158.496889 74.936761 L 158.281507 75.157751 L 158.240057 74.922523 L 158.774336 74.613962 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e547' d='M 158.085639 73.131296 L 158.233351 73.565338 L 157.916544 73.487354 L 157.810007 73.261581 L 158.085639 73.131296 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e548' d='M 158.173695 76.384014 L 158.182391 76.670597 L 158.040122 76.448123 L 158.173695 76.384014 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e549' d='M 155.989314 80.610856 L 156.248274 80.775445 L 156.114168 80.607449 L 155.723753 80.482715 L 155.711604 79.919477 L 156.238670 79.644889 L 156.304737 79.678459 L 156.219595 79.566003 L 156.632934 79.578098 L 156.213492 79.550116 L 156.376607 79.309711 L 156.212954 79.092074 L 156.202828 79.531701 L 155.959354 79.663690 L 155.984752 79.347322 L 155.749743 79.039915 L 155.895696 78.850755 L 155.733966 79.021995 L 155.542607 78.732772 L 155.781737 78.679230 L 156.265321 78.942229 L 155.773876 78.660990 L 155.304795 78.735225 L 154.945890 78.205476 L 155.163714 78.139410 L 155.349708 77.571048 L 155.652992 77.551961 L 155.943577 77.805286 L 155.688230 77.578942 L 156.135761 77.508819 L 156.120853 77.613426 L 156.349605 77.544606 L 156.560040 77.204107 L 156.627200 77.584933 L 156.701924 77.537020 L 156.808340 77.746807 L 156.728091 77.509424 L 156.892778 77.596259 L 156.926047 77.336040 L 157.260820 77.366319 L 157.408853 77.234193 L 157.351920 77.346881 L 157.600671 77.679344 L 157.373964 77.826671 L 157.711661 77.985487 L 157.932640 77.882808 L 157.575494 77.761748 L 157.825069 77.710898 L 158.168978 78.030509 L 157.889167 78.408171 L 157.687725 78.169172 L 157.821759 78.102490 L 157.604574 78.210435 L 157.479511 78.067230 L 157.512385 78.230610 L 157.280236 78.001099 L 157.497597 77.936396 L 157.140385 77.970204 L 157.334131 78.076137 L 157.245185 78.208642 L 157.557298 78.302073 L 157.354163 78.322733 L 157.552735 78.373285 L 157.336748 78.548626 L 157.869103 78.573858 L 157.740521 78.908146 L 156.818546 78.989430 L 157.580936 79.030570 L 157.605564 79.299002 L 157.362704 79.520443 L 156.991739 79.437917 L 157.163804 79.595139 L 156.790155 79.577767 L 156.648149 79.421404 L 156.722484 79.615973 L 157.046932 79.597283 L 157.080520 80.007433 L 156.670502 79.727887 L 156.474784 79.764863 L 156.731599 79.895355 L 156.666697 80.052401 L 156.791936 79.935903 L 157.090415 80.158279 L 156.863654 80.129802 L 156.964473 80.325889 L 156.761404 80.212701 L 156.745902 80.387953 L 156.659980 80.242717 L 156.579335 80.384766 L 157.053528 80.554301 L 156.820775 80.712787 L 157.070515 80.735875 L 156.775697 80.746650 L 156.849910 80.895626 L 156.306792 80.621334 L 156.638375 80.903432 L 156.432751 80.892695 L 156.445147 80.900573 L 156.218176 80.907346 L 156.559050 81.118265 L 156.350539 81.189454 L 156.755797 81.491309 L 156.512818 81.474696 L 156.582216 81.578341 L 156.856122 81.509065 L 156.585955 81.721438 L 156.789111 81.814218 L 156.817641 82.086772 L 157.001414 82.132180 L 156.557951 82.579272 L 156.427336 83.012181 L 156.229189 82.981037 L 156.457241 83.189303 L 156.522658 83.762721 L 156.351914 83.922252 L 156.014723 83.718127 L 156.208050 83.940063 L 155.959673 83.782380 L 155.813270 83.869050 L 155.896466 84.047413 L 156.489400 84.100528 L 156.505254 84.303476 L 156.699725 84.343122 L 156.569275 84.604297 L 156.237406 84.423492 L 155.599767 84.430990 L 155.352984 84.083443 L 155.374006 83.023461 L 155.171971 82.705280 L 155.401756 82.565121 L 155.342462 82.153575 L 155.622504 81.953881 L 155.499684 80.931402 L 155.989314 80.610856 Z M 156.796802 78.988256 L 156.841697 78.785766 L 156.528200 78.973762 L 156.796802 78.988256 Z M 156.215371 82.968418 L 156.299030 82.956054 L 156.209974 82.829067 L 155.907031 82.909976 L 155.826772 82.750225 L 155.885504 82.928798 L 156.161984 82.919662 L 156.215371 82.968418 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e550' d='M 157.423111 77.205972 L 157.120870 77.123076 L 157.345873 76.800057 L 157.604805 76.772131 L 157.839527 77.173377 L 157.520949 77.012318 L 157.423111 77.205972 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e551' d='M 157.242744 79.645164 L 157.404199 79.804254 L 157.227572 80.069949 L 157.071406 79.792975 L 157.275233 79.796173 L 157.135823 79.691671 L 157.242744 79.645164 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e552' d='M 157.208991 76.173589 L 157.398812 76.365499 L 157.091130 76.489683 L 156.942649 76.328117 L 157.208991 76.173589 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e553' d='M 157.121365 80.771278 L 157.116582 80.968134 L 156.905982 81.008045 L 157.003888 81.064722 L 156.808571 80.986825 L 157.121365 80.771278 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e554' d='M 156.760690 76.935400 L 156.799721 77.195750 L 156.668061 77.100648 L 156.760690 76.935400 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e555' d='M 156.645291 80.847404 L 156.782657 80.887138 L 156.670513 81.022767 L 156.645291 80.847404 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e556' d='M 155.975241 84.552019 L 156.297821 84.639589 L 156.100458 85.098622 L 155.975241 84.552019 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e557' d='M 155.864945 85.402708 L 155.883657 85.543339 L 155.699004 85.465497 L 155.864945 85.402708 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e558' d='M 155.676575 85.471105 L 155.807245 85.644214 L 155.594776 85.553673 L 155.676575 85.471105 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e559' d='M 155.465425 84.925502 L 155.573611 85.060899 L 155.392861 85.167327 L 155.465425 84.925502 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e560' d='M 155.058683 84.930944 L 155.244502 85.035931 L 155.169343 85.445498 L 155.396765 85.660430 L 155.153686 85.518238 L 155.297836 85.648260 L 155.134721 85.644104 L 155.465041 85.938097 L 155.198434 85.766275 L 155.287094 85.925772 L 155.025293 86.118440 L 155.043731 86.291241 L 154.728023 86.340661 L 154.592472 86.141693 L 154.586194 86.280577 L 154.405235 86.253816 L 154.340554 86.351953 L 154.720491 86.478258 L 154.485198 86.429288 L 154.363896 86.562685 L 154.558268 86.640097 L 154.246573 86.710463 L 154.284119 86.476884 L 154.047242 86.384750 L 154.153065 86.208562 L 154.401244 86.254443 L 154.200671 86.126433 L 154.553364 85.868897 L 154.624059 85.554982 L 154.486748 85.453458 L 154.938403 85.386282 L 155.058683 84.930944 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e561' d='M 154.390986 86.807269 L 154.626598 87.029688 L 154.332001 86.989283 L 154.390986 86.807269 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e562' d='M 154.228432 78.997862 L 154.329032 79.163605 L 154.560247 79.102585 L 154.408413 79.342814 L 154.367458 79.182460 L 153.989576 79.182129 L 154.228432 78.997862 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e563' d='M 154.013599 87.283826 L 154.191160 87.455230 L 153.858907 87.417300 L 154.013599 87.283826 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e564' d='M 153.494328 88.114627 L 153.704708 88.206047 L 153.374983 88.163663 L 153.494328 88.114627 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e565' d='M 153.666678 87.644403 L 153.654903 87.974228 L 153.353323 87.983957 L 153.421544 87.709589 L 153.666678 87.644403 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e566' d='M 148.220971 74.860569 L 148.547069 74.924942 L 148.630738 75.092334 L 148.462851 75.195793 L 148.598688 75.319591 L 148.231966 75.091509 L 148.220971 74.860569 Z ' fill='#3B548F' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Western Isles&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 15.56'/>\n <path id='svg_3c9aaa3e0504a623_e567' d='M 185.333499 93.757531 L 186.606467 93.865365 L 186.120289 93.901153 L 186.061465 94.022561 L 185.903862 93.839364 L 185.939173 95.063875 L 186.899866 95.415560 L 187.397005 95.891128 L 187.261784 96.135118 L 185.865601 97.069267 L 185.446765 97.020683 L 184.944766 96.689935 L 183.510828 97.872582 L 183.351155 98.519071 L 182.634719 98.571394 L 182.335855 98.843518 L 181.900538 98.934322 L 181.842179 99.177796 L 181.339487 99.091731 L 181.341455 98.904065 L 181.153219 98.831743 L 179.669079 98.513838 L 179.471387 98.259347 L 179.636227 97.938681 L 180.241553 97.863401 L 180.005148 97.702727 L 180.576688 97.517777 L 180.665149 97.278086 L 181.699041 97.553048 L 182.020059 97.468709 L 182.012242 97.241364 L 182.193640 97.140391 L 182.526972 97.175727 L 182.444448 96.993878 L 182.775636 96.867452 L 182.754251 96.574305 L 182.582450 96.510812 L 182.654333 96.403648 L 182.059397 96.319814 L 182.159788 96.131918 L 181.956324 95.962515 L 182.288952 95.716073 L 182.573480 95.730630 L 182.532206 95.420463 L 182.841306 95.106503 L 182.701258 94.971919 L 185.333499 93.757531 Z ' fill='#1D1524' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Fife&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 20.24'/>\n <path id='svg_3c9aaa3e0504a623_e568' d='M 185.533842 87.311423 L 186.262888 87.571938 L 186.780895 88.124687 L 186.948836 88.485528 L 186.880593 89.016552 L 187.238421 89.739903 L 187.815897 89.722752 L 188.270300 90.187259 L 188.545900 90.106790 L 188.422662 90.929048 L 188.040548 91.219237 L 187.999395 91.584112 L 188.150922 91.685251 L 187.756097 92.383942 L 186.616372 93.227837 L 186.446695 93.670884 L 185.901267 93.482625 L 184.397569 93.769812 L 184.533395 93.830787 L 184.071021 93.938753 L 184.084324 94.183162 L 183.915063 94.268974 L 184.040620 94.290963 L 183.859079 94.286192 L 183.982844 94.334391 L 182.781770 94.820822 L 183.062724 94.816765 L 182.701258 94.971919 L 182.841306 95.106503 L 182.532206 95.420463 L 182.573480 95.730630 L 182.288952 95.716073 L 181.956324 95.962515 L 182.159788 96.131918 L 182.059397 96.319814 L 182.654333 96.403648 L 182.775636 96.867452 L 182.444448 96.993878 L 182.526972 97.175727 L 182.012242 97.241364 L 182.020059 97.468709 L 180.858367 97.436594 L 180.698441 97.269577 L 180.576688 97.517777 L 180.172760 97.578522 L 180.125571 97.257879 L 180.503024 97.102712 L 180.632199 96.823969 L 180.341603 96.700655 L 180.003873 96.900513 L 179.527205 96.883581 L 179.235521 96.531151 L 178.849889 96.785565 L 178.786230 96.412245 L 178.605645 96.548303 L 178.424313 96.302850 L 178.151978 96.369752 L 177.726249 95.783085 L 177.504401 95.847875 L 177.233364 95.585018 L 176.999841 95.696173 L 176.492498 95.386896 L 176.167776 95.070365 L 176.167941 94.394586 L 176.468640 94.376061 L 176.458525 93.504690 L 176.725527 93.673511 L 177.162010 93.434545 L 176.800895 92.873000 L 175.823152 93.272926 L 175.617224 92.482419 L 175.392112 92.375828 L 175.139019 92.611880 L 174.525964 92.775424 L 174.419317 92.631945 L 174.268417 92.852606 L 173.938692 92.836388 L 173.546078 93.219877 L 173.217616 93.038797 L 173.431294 92.562350 L 173.155058 92.245653 L 173.821215 91.956771 L 174.087502 92.011580 L 173.601270 91.378295 L 173.653494 90.990409 L 173.414968 91.167640 L 173.070510 91.123112 L 173.072873 90.703451 L 173.475822 90.741877 L 173.925828 90.533202 L 173.971125 89.717792 L 174.266273 89.575909 L 174.457632 89.180050 L 174.971902 89.583550 L 175.450658 88.884849 L 175.740639 88.996828 L 175.930074 88.666827 L 176.638505 88.456886 L 176.821454 87.957350 L 177.072129 88.142498 L 178.035634 88.246837 L 178.413076 87.553192 L 178.690963 87.876046 L 179.184507 87.700079 L 179.442164 87.893968 L 179.731923 87.772533 L 179.929276 88.022768 L 180.167856 87.797711 L 180.784649 87.829649 L 180.921640 88.407400 L 181.078807 88.311154 L 181.555584 88.559685 L 181.799498 88.396692 L 182.183042 88.550615 L 182.775426 88.162399 L 182.784387 87.901938 L 183.873119 88.412084 L 184.135668 87.559624 L 185.533842 87.311423 Z ' fill='#3A3360' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Tayside&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 17.66'/>\n <path id='svg_3c9aaa3e0504a623_e569' d='M 173.688127 98.122773 L 174.431895 98.293342 L 174.265338 98.453939 L 174.362706 98.899569 L 174.814076 99.407702 L 175.144746 99.308048 L 175.349805 99.572180 L 175.684094 99.603350 L 175.776426 99.172420 L 175.643612 98.770790 L 176.310836 98.982743 L 176.560665 98.743633 L 176.882408 99.406328 L 176.803753 99.696562 L 177.301761 99.574567 L 177.154291 99.819525 L 177.239609 100.071947 L 176.297522 100.170261 L 176.493081 100.538105 L 177.060299 100.548516 L 177.095240 101.039740 L 176.902253 101.055825 L 176.839111 101.254968 L 176.413921 101.277859 L 176.207850 101.009681 L 176.015029 101.078440 L 176.186301 101.546444 L 175.634288 101.913233 L 176.036336 102.483760 L 176.024242 102.874989 L 175.824197 103.050077 L 175.117414 102.773014 L 174.911937 102.452909 L 174.796594 102.563822 L 174.540686 102.292224 L 174.335670 102.315906 L 174.413919 102.094027 L 174.177218 101.942027 L 173.910579 102.153210 L 173.642906 101.666735 L 173.327737 101.923963 L 173.215901 101.741564 L 173.019407 101.934199 L 172.870794 101.389025 L 172.631993 101.362913 L 172.626495 101.170618 L 172.213321 100.921373 L 172.443833 100.808404 L 172.129433 100.270882 L 171.486935 100.449290 L 171.610349 99.635960 L 172.194938 99.299033 L 172.864747 99.562726 L 172.938333 99.775854 L 173.412318 99.772423 L 173.434373 99.161315 L 173.142249 98.961600 L 173.550299 98.763049 L 173.431570 98.395273 L 173.602688 97.981010 L 173.688127 98.122773 Z ' fill='#281E37' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Greater Glasgow and Clyde&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 19.39'/>\n <path id='svg_3c9aaa3e0504a623_e570' d='M 177.332436 98.762423 L 177.536725 98.800794 L 177.460126 99.022674 L 177.746786 99.054822 L 177.742752 99.334743 L 178.032127 99.373333 L 178.076314 99.613597 L 178.608690 99.673341 L 178.303175 99.925709 L 178.943319 100.348910 L 178.841620 100.602257 L 179.255047 100.749793 L 179.603937 100.643750 L 179.333230 100.919427 L 179.561652 101.475387 L 179.356241 101.878556 L 180.411825 101.542673 L 180.656640 101.848453 L 181.313925 102.108561 L 181.437119 102.619939 L 181.575309 102.788275 L 181.732717 102.720923 L 181.098322 103.531087 L 181.117706 103.930441 L 180.781801 103.984765 L 181.056708 104.587221 L 181.057753 105.145577 L 180.670086 106.041465 L 180.885743 106.424504 L 180.383184 106.747533 L 180.399071 107.440738 L 180.161094 107.470148 L 179.931585 107.882004 L 179.440624 107.481802 L 179.453466 106.991458 L 179.160099 106.840933 L 178.681947 105.978137 L 178.200717 105.777433 L 177.681996 105.829051 L 177.361615 105.592174 L 177.306972 105.351944 L 177.794744 104.574522 L 177.246393 104.126770 L 176.946407 104.421424 L 176.489805 104.344407 L 175.956351 104.602558 L 175.827715 104.453252 L 176.313068 103.945779 L 176.107207 103.816560 L 175.844537 103.081796 L 176.024242 102.874989 L 176.022230 102.413593 L 175.634827 101.909978 L 176.186301 101.546444 L 175.990445 101.317164 L 176.041702 101.047458 L 176.212116 101.012320 L 176.413921 101.277859 L 176.839111 101.254968 L 176.902253 101.055825 L 177.095240 101.039740 L 177.060299 100.548516 L 176.493081 100.538105 L 176.297522 100.170261 L 177.239609 100.071947 L 177.154291 99.819525 L 177.300057 99.571048 L 176.803753 99.696562 L 176.882408 99.406328 L 176.619705 99.037517 L 177.332436 98.762423 Z ' fill='#2B203C' fill-opacity='1' fill-rule='evenodd' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.21' stroke-linejoin='round' stroke-linecap='butt' title='Lanarkshire&amp;lt;br/&amp;gt;Winter Year: 2021&amp;lt;br/&amp;gt;Items per Head: 19.19'/>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c8)'>\n <text x='42.92' y='131.69' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2022<\/text>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c9)'>\n <text x='102.68' y='131.69' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2023<\/text>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c10)'>\n <text x='42.92' y='35.08' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2019<\/text>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c11)'>\n <text x='102.68' y='35.08' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2020<\/text>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c12)'>\n <text x='162.44' y='35.08' font-size='7.5pt' font-weight='bold' font-family='Helvetica'>2021<\/text>\n <\/g>\n <g clip-path='url(#svg_3c9aaa3e0504a623_c1)'>\n <text x='207.13' y='83.77' font-size='6pt' font-family='Helvetica'>Items per Head<\/text>\n <image x='207.13' y='88.64' width='17.28' height='86.4' preserveAspectRatio='none' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEsCAYAAAACUNnVAAAAvElEQVQ4ja1PyxIDIQhLaHvq/38ve3BFQNSdTi9MXgTF9/1RIQVtiKExQELYhnSErmEYoA/DInfYqpAicdetVRvhBen4OpK1gq7vBgqGAjgtfp9Su+PNSxd2corY3ezKogqV0TV90hLeotvc1AeP2Cgm46TNBgtN8Y9mPYe1MLTYqKqSpvYZwlD85T0Y6CG8MpA0bgqShu3JE2Vd9bRlICEhL7AjEiJAR43yRP2uGY5i6xb0aa6k+LmUu9wF6sEQDhgmSYEAAAAASUVORK5CYII=' xmlns:xlink='http://www.w3.org/1999/xlink'/>\n <polyline points='220.96,150.48 224.41,150.48' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='220.96,123.42 224.41,123.42' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='220.96,96.36 224.41,96.36' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='210.59,150.48 207.13,150.48' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='210.59,123.42 207.13,123.42' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <polyline points='210.59,96.36 207.13,96.36' fill='none' stroke='#FFFFFF' stroke-opacity='1' stroke-width='0.37' stroke-linejoin='round' stroke-linecap='round'/>\n <text x='228.4' y='152.77' font-size='4.8pt' font-family='Helvetica'>10<\/text>\n <text x='228.4' y='125.72' font-size='4.8pt' font-family='Helvetica'>15<\/text>\n <text x='228.4' y='98.66' font-size='4.8pt' font-family='Helvetica'>20<\/text>\n <text x='26.16' y='25' font-size='6pt' font-family='Helvetica'>By Health Board and Winter Year<\/text>\n <text x='26.16' y='12.63' font-size='9pt' font-weight='bold' font-family='Helvetica'>Antidepressant Prescriptions per Head<\/text>\n <\/g>\n <\/g>\n<\/svg>","js":null,"uid":"svg_3c9aaa3e0504a623","ratio":1.333333333333333,"settings":{"tooltip":{"css":".tooltip_SVGID_ { padding:5px;background:black;color:white;border-radius:2px;text-align:left; ; position:absolute;pointer-events:none;z-index:999;}","placement":"doc","opacity":0.9,"offx":10,"offy":10,"use_cursor_pos":true,"use_fill":false,"use_stroke":false,"delay_over":200,"delay_out":500},"hover":{"css":".hover_data_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_data_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_data_SVGID_ { fill:orange;stroke:black; }\nline.hover_data_SVGID_, polyline.hover_data_SVGID_ { fill:none;stroke:orange; }\nrect.hover_data_SVGID_, polygon.hover_data_SVGID_, path.hover_data_SVGID_ { fill:orange;stroke:none; }\nimage.hover_data_SVGID_ { stroke:orange; }","reactive":true,"nearest_distance":null},"hover_inv":{"css":""},"hover_key":{"css":".hover_key_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_key_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_key_SVGID_ { fill:orange;stroke:black; }\nline.hover_key_SVGID_, polyline.hover_key_SVGID_ { fill:none;stroke:orange; }\nrect.hover_key_SVGID_, polygon.hover_key_SVGID_, path.hover_key_SVGID_ { fill:orange;stroke:none; }\nimage.hover_key_SVGID_ { stroke:orange; }","reactive":true},"hover_theme":{"css":".hover_theme_SVGID_ { fill:orange;stroke:black;cursor:pointer; }\ntext.hover_theme_SVGID_ { stroke:none;fill:orange; }\ncircle.hover_theme_SVGID_ { fill:orange;stroke:black; }\nline.hover_theme_SVGID_, polyline.hover_theme_SVGID_ { fill:none;stroke:orange; }\nrect.hover_theme_SVGID_, polygon.hover_theme_SVGID_, path.hover_theme_SVGID_ { fill:orange;stroke:none; }\nimage.hover_theme_SVGID_ { stroke:orange; }","reactive":true},"select":{"css":".select_data_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_data_SVGID_ { stroke:none;fill:red; }\ncircle.select_data_SVGID_ { fill:red;stroke:black; }\nline.select_data_SVGID_, polyline.select_data_SVGID_ { fill:none;stroke:red; }\nrect.select_data_SVGID_, polygon.select_data_SVGID_, path.select_data_SVGID_ { fill:red;stroke:none; }\nimage.select_data_SVGID_ { stroke:red; }","type":"multiple","only_shiny":true,"selected":[]},"select_inv":{"css":""},"select_key":{"css":".select_key_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_key_SVGID_ { stroke:none;fill:red; }\ncircle.select_key_SVGID_ { fill:red;stroke:black; }\nline.select_key_SVGID_, polyline.select_key_SVGID_ { fill:none;stroke:red; }\nrect.select_key_SVGID_, polygon.select_key_SVGID_, path.select_key_SVGID_ { fill:red;stroke:none; }\nimage.select_key_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"select_theme":{"css":".select_theme_SVGID_ { fill:red;stroke:black;cursor:pointer; }\ntext.select_theme_SVGID_ { stroke:none;fill:red; }\ncircle.select_theme_SVGID_ { fill:red;stroke:black; }\nline.select_theme_SVGID_, polyline.select_theme_SVGID_ { fill:none;stroke:red; }\nrect.select_theme_SVGID_, polygon.select_theme_SVGID_, path.select_theme_SVGID_ { fill:red;stroke:none; }\nimage.select_theme_SVGID_ { stroke:red; }","type":"single","only_shiny":true,"selected":[]},"zoom":{"min":1,"max":1,"duration":300,"default_on":false},"toolbar":{"position":"topright","pngname":"diagram","tooltips":null,"fixed":false,"hidden":[],"delay_over":200,"delay_out":500},"sizing":{"rescale":true,"width":1}}},"evals":[],"jsHooks":[]}</script>

Figure 3

winter_population <- list.files(here("data", "winter_population"), pattern = "csv", full.names = TRUE) %>%
  map_dfr(read_csv) %>%
  clean_names() %>%
  select(date, practice_code, hb, all_ages) %>%
  mutate(winter_year = as.numeric(substr(date, 1, 4)),
    winter_year = case_when(
      winter_year == 2020 ~ 2019,
      winter_year == 2023 ~ 2022,
      TRUE ~ winter_year ),
    healthboards = hb) %>%
  select(-hb)
#summarise and filter combined population data for selected years
summary_winter_with_simd <- combined_pop_simd %>%
  filter(!is.na(simd2020v2_quintile), winter_year %in% c("2019","2022")) %>%
  group_by(simd2020v2_quintile, h_bname, gp_practice, winter_year) %>%
  summarise(avg_paid_over_winters = mean(paid_quantity), .groups = "drop") %>%
  rename(practice_code = gp_practice) %>%
  mutate(winter_year = as.numeric(winter_year))
# Join datasets
joined_data <- summary_winter_with_simd %>%
  full_join(winter_population, by = c("winter_year", "practice_code"))
# Calculate prescriptions per 1000
final_boxplot <- joined_data %>%
  group_by(simd2020v2_quintile, h_bname, practice_code, winter_year) %>%
  reframe(
    avg_per_1000 = (avg_paid_over_winters / all_ages) * 1000,
    year_label = factor(winter_year,
                        levels = c(2019, 2022),
                        labels = c("Pre-COVID (2019)", "Post-COVID (2022)"))
  )

#create boxplot of average prescriptions per 1000 by SIMD quintile, faceted by pre/post COVID
box2 <- final_boxplot %>%
  ggplot(aes(x = simd2020v2_quintile, y = avg_per_1000, fill = factor(simd2020v2_quintile))) +
  geom_boxplot() +
  scale_fill_viridis(discrete = TRUE, alpha = 0.6) +
  scale_y_continuous(labels = scales::label_comma()) +
  coord_cartesian(ylim = c(0, 70000))  + #scaled y axis graph to be able to visualise better
  theme_minimal(base_size=7) +
  theme(legend.position = "none") +
  facet_wrap(~year_label) +
  labs(title = "Average Winter Antidepressant Prescriptions Per by SIMD Quintile",
    x = "SIMD Quintile (1 = Most Deprived)",
    y = "Avg prescriptions per 1000")

ggplotly(box2, height=250)

The boxplot shows no strong socioeconomic gradient in antidepressant prescribing across SIMD quintiles, with median rates remaining relatively flat in both 2019 and 2022. Although overall prescribing increased uniformly after COVID-19, greater variability and more extreme outliers in 2022 suggest widening differences between individual health boards or practices, rather than between deprivation groups.


Figure 4

#create population-weighted deprivation profile per health board
hb_deprivation <- SIMD %>%
  group_by(h_bname) %>%
  summarise(
#weighted mean SIMD quintile (lower value = more deprived)
    avg_quintile = weighted.mean(simd2020v2_quintile, w = population, na.rm = TRUE),
#percentage of population living in most deprived quintiles (Q1 & Q2)
    pct_deprived = sum(population[simd2020v2_quintile <= 2], na.rm = TRUE) / 
                   sum(population, na.rm = TRUE) * 100,
#total population per health board (for reference)
    total_pop = sum(population, na.rm = TRUE)
  ) %>%
  arrange(avg_quintile)  #rank health boards from most to least deprived
#join deprivation ranking to prescribing data (2019 = pre-COVID, 2022 = post-COVID)
final_lollipop_data <- combined %>% 
  filter(winter_year %in% c("2019", "2022")) %>%
  mutate(period = ifelse(winter_year == 2019, "pre", "post")) %>%
  full_join(hb_deprivation, by = "h_bname")
#calculate percentage change in prescribing per health board
change_summary <- final_lollipop_data %>% 
  group_by(h_bname, period) %>% 
  summarise(avg_prescribe = mean(total_paid),     
    avg_quintile = first(avg_quintile),
    pct_deprived = first(pct_deprived),
    total_pop = first(total_pop)) %>% 
  pivot_wider(
    names_from = period, 
    values_from = avg_prescribe
  ) %>%
  mutate(
    pct_change = round(((post - pre) / pre) * 100, 1),
    avg_quintile = round(avg_quintile, 2),
    pct_deprived = round(pct_deprived, 1),
    pre = round(pre, 0),
    post = round(post, 0)
  ) %>%
  arrange(desc(pct_change))  #sort by percentage change (highest first)

# Create formatted table
prescribing_table <- change_summary %>%
  select(h_bname, pre, post, pct_change, avg_quintile, pct_deprived) %>%
  rename(
    "Health Board" = h_bname,
    "Pre-COVID (2019)" = pre,
    "Post-COVID (2022)" = post,
    "% Change" = pct_change,
    "Avg SIMD Quintile" = avg_quintile,
    "% in Deprived Areas (Q1-Q2)" = pct_deprived
  )

prescribing_table %>% 
gt() %>% 
tab_header(title=md("**Antidepressant Prescribing** Changes by Health Board **Before and After COVID-19** (2019-2022)"),subtitle=md("with *deprivation indicators*")) %>% 
tab_spanner(label="average total prescriptions",columns = c('Pre-COVID (2019)','Post-COVID (2022)')) %>% 
tab_spanner(label="Deprivation",columns = c('Avg SIMD Quintile','% in Deprived Areas (Q1-Q2)')) %>% 
  tab_options(
    table.font.size = px(12),
    data_row.padding = px(2),
    heading.padding = px(2) ) %>% 
   tab_footnote(footnote = md("**Avg SIMD Quintle** 1 represents most deprived areas in scotland ")) %>%
tab_caption(md("The table shows that Glasgow and Lanarkshire had the largest increases in antidepressant prescribing after COVID-19. This cannot be explained by average deprivation alone, but becomes clearer when considering that both regions have the highest concentrations of people living in the most deprived areas. Rural and island boards showed far smaller increases, suggesting that urbanisation and population density played a bigger role than deprivation in driving prescribing changes during COVID.")) 
The table shows that Glasgow and Lanarkshire had the largest increases in antidepressant prescribing after COVID-19. This cannot be explained by average deprivation alone, but becomes clearer when considering that both regions have the highest concentrations of people living in the most deprived areas. Rural and island boards showed far smaller increases, suggesting that urbanisation and population density played a bigger role than deprivation in driving prescribing changes during COVID.
Antidepressant Prescribing Changes by Health Board Before and After COVID-19 (2019-2022)
with deprivation indicators
average total prescriptions
% Change
Deprivation
Pre-COVID (2019) Post-COVID (2022) Avg SIMD Quintile % in Deprived Areas (Q1-Q2)
Greater Glasgow and Clyde
6555083 23757849 262.4 2.70 52.0
Lanarkshire
3666290 13186662 259.7 2.67 51.8
Fife
6681894 7813849 16.9 3.03 39.8
Grampian
7764826 9058806 16.7 3.62 20.6
Western Isles
366503 426735 16.4 2.85 15.1
Highland
4424027 5124922 15.8 3.12 25.5
Lothian
13123200 15122300 15.2 3.40 32.0
Orkney
319190 367197 15.0 3.52 16.3
Dumfries and Galloway
2563265 2936457 14.6 2.94 33.9
Ayrshire and Arran
6720774 7619110 13.4 2.60 52.5
Forth Valley
5275843 5949958 12.8 3.14 36.1
Shetland
305882 344729 12.7 3.52 6.0
Tayside
6709598 7491600 11.7 3.11 34.8
Borders
1992572 2211388 11.0 3.23 21.7
Avg SIMD Quintle 1 represents most deprived areas in scotland

Conclusion This analysis shows that antidepressant prescribing increased across almost all Scottish health boards after COVID-19, with the largest rises seen in Glasgow and Lanarkshire. However, average SIMD quintile did not explain these differences, as no clear deprivation gradient appeared before or after the pandemic Figure 3.

When population-weighted deprivation was included, a clearer pattern emerged: health boards with the highest proportions of residents in the most deprived areas (Q1–Q2) experienced the greatest increases Figure 4. This suggests that COVID-19 may have intensified pre-existing mental health inequalities in large, urban, socioeconomically deprived regions.

This aligns with Figure 2, which shows higher prescribing per head in central Scotland’s densely populated urban belt compared with more rural northern areas, highlighting the influence of population density and urbanisation.

Overall, although prescribing did rise during COVID-19, the trend shown in Figure 1 indicates that this increase was part of a longer-term upward trajectory rather than a sharp pandemic-specific surge.

Limitations Several limitations reduce the strength of these findings. Firstly, the data reflects prescribing volume, not whether the antidepressants were newly started or continued, so it may not directly truly represent true changes in mental health across deprivation levels.In addition, important confounding variables such as changes in healthcare access,remote consultations, and shifting service pressures durung COVID-19 potentially affecting the accuracy of the results.Finally, the analysis was only done at health board level, so findings cannot be generalised to individual gp practice levels so GP practices, and no conclusions can be made about patient-level experiences or need.

Next Steps Future work could be done to link prescribing levels to practice level SIMD and demographic characteristics to better understand drivers of change. Work should be done analysing antidepressant prescriptions all year round and compare it with the winter-only dataset used here, to determine whether truly seasonal peaks exist and whether winter peaks changed post-COVID. Additionally, applying time-series modelling would confirm whether the post COVID rise represents a temporary shock or a long term behavioural shift in prescribing patterns.

References National Records of Scotland (2022). Scottish Census. Scottish Census Web Portal. (https://www.scotlandscensus.gov.uk/webapi/jsf/tableView/tableView.xhtml)(Accessessed: 26 November 2023) Public Health Scotland (2025). Prescriptions in the Community. NHS Scotland Open (https://www.opendata.nhs.scot/dataset/prescriptions-in-the-community)(Accessessed: 26 November 2023) Scottish Government (2020). Scottish Index of Multiple Deprivation 2020v2 data zone lookup file. Scottish Government Supporting Documents. https://www.gov.scot/collections/scottish-index-of-multiple-deprivation-2020/#supportingdocuments(Accessessed: 26 November 2023) UK Government (2025). NHS Health Boards Scotland. Data.gov.uk.https://www.data.gov.uk/dataset/27d0fe5f-79bb-4116-aec9-a8e565ff756a/nhs-health-boards-scotland(Accessessed: 26 November 2023) Rosenthal, M.B. (2004). Seasonal Affective Disorder. In: Encyclopedia of Women’s Health. Springer, Boston, MA. https://doi.org/10.1007/978-0-306-48113-0_391(Accessessed: 26 November 2023)